Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

RootMucCalibDataCnv Class Reference

#include <RootMucCalibDataCnv.h>

Inheritance diagram for RootMucCalibDataCnv:

RootCalBaseCnv Converter< Ty1, Ty2 > List of all members.

Public Types

typedef Ty2 destination
typedef Ty2 destination
typedef Ty1 source
typedef Ty1 source

Public Member Functions

virtual StatusCode createObj (IOpaqueAddress *addr, DataObject *&refpObject)
virtual StatusCode createRoot (const std::string &fname, CalibData::CalibBase1 *pTDSObj)
virtual StatusCode finalize ()
ICalibRootSvcgetCalibRootSvc ()
virtual StatusCode initialize ()
const CLID & objType () const
destinationoperator (const source &) const
destinationoperator (const source &) const
virtual StatusCode readRootObj (TTree *tree, const std::string &branch, TObject *&pCalib, unsigned index=0)
virtual StatusCode readRootObj (const std::string &treename, const std::string &branch, TObject *&pCalib, unsigned index=0)
virtual long repSvcType () const
 RootMucCalibDataCnv (ISvcLocator *svc)
virtual ~RootMucCalibDataCnv ()

Static Public Member Functions

const CLID & classID ()
const unsigned char storageType ()

Protected Member Functions

StatusCode closeRead ()
StatusCode closeWrite ()
virtual destinationconvert (const source &) const =0
virtual destinationconvert (const source &) const =0
virtual StatusCode fillRoot (CalibData::CalibBase *pTDSObj, TObject *pRootObj)
virtual StatusCode i_createObj (const std::string &fname, DataObject *&refpObject)
virtual StatusCode i_processObj (DataObject *pObject, IOpaqueAddress *address)
 In case there is additional work to do on the created object.
virtual StatusCode internalCreateObj (const std::string &fname, DataObject *&refpObject, IOpaqueAddress *address)
StatusCode openRead (const std::string &fname)
virtual StatusCode openWrite (const std::string &fname)
void setBaseInfo (CalibData::CalibBase1 *pObj)
 Another utility for derived classes to use.

Protected Attributes

TFile * m_inFile
IInstrumentNamem_instrSvc
ICalibMetaCnvSvcm_metaSvc
TFile * m_outFile
ICalibRootSvcm_rootSvc
int m_runfrm
int m_runto
TDirectory * m_saveDir
int m_serNo
TTree * m_ttree
ITime * m_vend
ITime * m_vstart

Private Attributes

CalibData::MucIdTransformm_ptrIdTr

Friends

class CnvFactory<RootMucCalibDataCnv>

Detailed Description

Base class for CAL calibration converters from ROOT files to TCDS. All such converters need to do certain things, which are handled here. Methods common to *all* calibrations are in the base class RootCalBaseCnv

Author:
J. Bogart


Member Typedef Documentation

template<class Ty1, class Ty2>
typedef Ty2 Converter< Ty1, Ty2 >::destination [inherited]
 

template<class Ty1, class Ty2>
typedef Ty2 Converter< Ty1, Ty2 >::destination [inherited]
 

template<class Ty1, class Ty2>
typedef Ty1 Converter< Ty1, Ty2 >::source [inherited]
 

template<class Ty1, class Ty2>
typedef Ty1 Converter< Ty1, Ty2 >::source [inherited]
 


Constructor & Destructor Documentation

RootMucCalibDataCnv::RootMucCalibDataCnv ISvcLocator *  svc  ) 
 

00039                                                           :
00040   RootCalBaseCnv(svc, CLID_Calib_MucCal) { 
00041     m_ptrIdTr = new MucIdTransform();
00042 }

virtual RootMucCalibDataCnv::~RootMucCalibDataCnv  )  [inline, virtual]
 

00035 {};


Member Function Documentation

const CLID & RootMucCalibDataCnv::classID  )  [static]
 

00049                                          {
00050   return CLID_Calib_MucCal;
00051 }

StatusCode RootCalBaseCnv::closeRead  )  [protected, inherited]
 

Clean up when we've finished reading in

00132                                      {
00133   m_inFile->Close();
00134 
00135   delete m_inFile;
00136   m_inFile = 0;
00137 
00138   if (m_saveDir) {
00139     m_saveDir->cd();
00140     m_saveDir = 0;
00141   }
00142   return StatusCode::SUCCESS;
00143 }

StatusCode RootCalBaseCnv::closeWrite  )  [protected, inherited]
 

Finish up writing file opened with openWrite: fill the tree write the file close the file Delete TFile (causes associated Tree to be deleted)

00179                                       {
00180 
00181   MsgStream log(msgSvc(), "RootCalBaseCnv");
00182 
00183   StatusCode ret = StatusCode::SUCCESS;
00184 
00185   m_outFile->cd();
00186   m_outFile->Close();
00187   delete m_outFile;
00188   m_outFile = 0;
00189   if (m_saveDir) m_saveDir->cd();
00190   m_saveDir = 0;
00191   return ret;
00192 }

template<class Ty1, class Ty2>
virtual destination* Converter< Ty1, Ty2 >::convert const source  )  const [protected, pure virtual, inherited]
 

template<class Ty1, class Ty2>
virtual destination* Converter< Ty1, Ty2 >::convert const source  )  const [protected, pure virtual, inherited]
 

StatusCode RootCalBaseCnv::createObj IOpaqueAddress *  addr,
DataObject *&  refpObject
[virtual, inherited]
 

Create the transient representation of an object, given an opaque address. This and the following update method comprise the core functionality of calibration converters.

00250                                                            {
00251   //  StatusCode ret;
00252 
00253   // first do the things we always need:
00254   //   First string parameter of opaque address is file ident
00255   MsgStream log(msgSvc(), "RootCalBaseCnv");
00256    log << MSG::DEBUG<<"RootCalBaseCnv::createObj( starting ...."<<endreq;
00257    const std::string* par = addr->par();
00258 
00259   std::string par0 = par[0];
00260    
00261   return internalCreateObj(par0, refpObject, addr);
00262 
00263 }

StatusCode RootMucCalibDataCnv::createRoot const std::string &  fname,
CalibData::CalibBase1 pTDSObj
[virtual]
 

Create ROOT file corresponding to TDS object input. Default implementation is to return an error. Must be separately implemented for each calibration type.

Parameters:
fname Filename for output file
pTDSObj Pointer to tds object to be converted

Reimplemented from RootCalBaseCnv.

00163                                                                       {
00164  
00165   MsgStream log(msgSvc(), "RootMucCalibDataCnv");
00166 
00167  // Open the file, create the branch
00168 /*   StatusCode sc = openWrite(fname);
00169   if(!sc)
00170     { log<<MSG::ERROR<<"unable to open files"<<endreq;
00171     }
00172   // write the Data in the TCDS to RootFile
00173      CalibData::MucCalibData* tmpObject = dynamic_cast<CalibData::MucCalibData*>(pTDSObj);
00174      int tmpNo;
00175      double MucCalibConst;
00176      double EnCoeff;
00177      double PosCoeff;
00178      int i;
00179 
00180      //DigiCalibConst------------------------------------------------------------------
00181      TTree *Digitree = new TTree("DigiCalibConst", "DigiCalibConst");
00182      Digitree -> Branch("DigiCalibConst", &MucCalibConst, "MucCalibConst/D");
00183      tmpNo = tmpObject -> getDigiCalibConstNo();
00184      for(i=0; i<tmpNo; i++){
00185           MucCalibConst = tmpObject -> getDigiCalibConst(i);
00186           Digitree -> Fill();
00187      }
00188 
00189        
00190      //EnCoeff-------------------------------------------------------------------------
00191      TTree *Entree = new TTree("EnCoeff", "EnCoeff");
00192      Entree -> Branch("EnCoeff", &EnCoeff, "EnCoeff/D");
00193      tmpNo = tmpObject -> getEnCoeffNo();
00194      for(i=0; i<tmpNo; i++){
00195           EnCoeff = tmpObject -> getEnCoeff(i);
00196           Entree -> Fill();
00197      }
00198 
00199     //PosCoeff-------------------------------------------------------------------------
00200      TTree *Postree = new TTree("PosCoeff", "PosCoeff");
00201      Postree -> Branch("PosCoeff", &PosCoeff, "PosCoeff/D");
00202      tmpNo = tmpObject -> getPosCoeffNo();
00203      for(i=0; i<tmpNo; i++){
00204           PosCoeff = tmpObject -> getPosCoeff(i);
00205           Postree -> Fill();
00206      }
00207 
00208      
00209      Digitree -> Write();
00210      Entree -> Write();
00211      Postree -> Write();
00212 
00213    
00214      delete Digitree;
00215      delete Entree;
00216      delete Postree;
00217     
00218      closeWrite();
00219      log<<MSG::INFO<<"successfully create RootFile"<<endreq;
00220   */
00221      return StatusCode::SUCCESS;
00222 
00223 }

StatusCode RootCalBaseCnv::fillRoot CalibData::CalibBase pTDSObj,
TObject *  pRootObj
[protected, virtual, inherited]
 

Given a pointer to a TDS object which can be cast to "our" type, fill in corresponding information in the corresponding root class

Parameters:
pTDSObj Pointer to tds object to be converted
pRootObj Pointer to destination root object
...maybe don't need pRootObj argument; keep this as the (protected) data member m_rootObj. Or else this routine could set the protected member to this passed-in value
00239                                                           {
00240 
00241   // Get instrument name from InstrumentName service  Now handled by 
00242   // RootCalBaseCnv
00243   //  TString instr = TString((m_instrSvc->getInstrumentName()).c_str());
00244   //  pRootObj->setInstrument(instr);
00245   return StatusCode::SUCCESS;
00246 }

StatusCode RootCalBaseCnv::finalize  )  [virtual, inherited]
 

00079                                     {
00080   return Converter::finalize();
00081 }

ICalibRootSvc* RootCalBaseCnv::getCalibRootSvc  )  [inline, inherited]
 

00058                                    {
00059     return m_rootSvc;
00060   }

StatusCode RootMucCalibDataCnv::i_createObj const std::string &  fname,
DataObject *&  refpObject
[protected, virtual]
 

This creates the transient representation of an object from the corresponding ROOT object. This actually does the "new" operation and deals with the attributes of the node. This base class implementation does nothing; it should not normally be called because it doesn't correspond to any TCDS class. Instead, i_createObj of some derived class will be called.

Parameters:
fname The ROOT file to be read in to be used to builds the object
refpObject the object to be built
Returns:
status depending on the completion of the call

Reimplemented from RootCalBaseCnv.

00054                                                                 {
00055 
00056   MsgStream log(msgSvc(), "RootMucCalibDataCnv");
00057   log<<MSG::DEBUG<<"SetProperty"<<endreq;
00058  
00059   StatusCode sc = openRead(fname);
00060   if(!sc)
00061     { log<<MSG::ERROR<<"unable to open files"<<endreq;
00062       return StatusCode::FAILURE;
00063     }
00064  
00065   MucCalibData *tmpObject = new MucCalibData() ;
00066   // Read in our object
00067  // int i;
00068  // int nentries;
00069   
00070   // read DigiCalibConst ------------------------------------------------------------
00071 
00072         Double_t lay_eff, box_eff, str_eff;
00073   Double_t lay_cnt, box_cnt, str_cnt;
00074   Double_t lay_nos, box_nos, str_nos;
00075   Double_t lay_nos_ratio, box_nos_ratio, str_nos_ratio;
00076   lay_eff = box_eff = str_eff = 0.0;
00077   lay_cnt = box_cnt = str_cnt = 0.0;
00078   lay_nos = box_nos = str_nos = 0.0;
00079   lay_nos_ratio = box_nos_ratio = str_nos_ratio = 0.0;
00080 
00081         char name[60];
00082         
00083         TTree* tr_Lvl[3];
00084   //TTree* tr_ClstPro[2];
00085         
00086   //TTree *ddgtree = (TTree*)m_inFile -> Get("ddgcalib");
00087         tr_Lvl[0] = (TTree*)m_inFile->Get("LayConst");
00088         tr_Lvl[0]->SetBranchAddress("layer_eff", &lay_eff);
00089         tr_Lvl[0]->SetBranchAddress("layer_cnt", &lay_cnt);
00090         tr_Lvl[0]->SetBranchAddress("layer_noise", &lay_nos);
00091   tr_Lvl[0]->SetBranchAddress("layer_nosratio", &lay_nos_ratio);
00092         
00093         tr_Lvl[1] = (TTree*)m_inFile->Get("BoxConst");
00094         tr_Lvl[1]->SetBranchAddress("box_eff", &box_eff);       
00095         tr_Lvl[1]->SetBranchAddress("box_cnt", &box_cnt);       
00096         tr_Lvl[1]->SetBranchAddress("box_noise", &box_nos);     
00097   tr_Lvl[1]->SetBranchAddress("box_nosratio", &box_nos_ratio);
00098   
00099         tr_Lvl[2] = (TTree*)m_inFile->Get("StrConst");
00100         tr_Lvl[2]->SetBranchAddress("strip_eff", &str_eff);
00101         tr_Lvl[2]->SetBranchAddress("strip_cnt", &str_cnt);
00102         tr_Lvl[2]->SetBranchAddress("strip_noise", &str_nos);
00103   tr_Lvl[2]->SetBranchAddress("strip_nosratio", &str_nos_ratio);
00104   //tr_ClstPro[0] = (TTree*)m_inFile->Get("LayClstPro");
00105   //tr_ClstPro[1] = (TTree*)m_inFile->Get("BoxClstPro");
00106                         
00107   int part, segment, layer, strip;
00108   part = segment = layer = strip = 0;
00109   for(int i=0; i<LAYER_MAX; i++)
00110   {
00111 
00112     tr_Lvl[0]->GetEntry(i);
00113     tmpObject->setLayerEff(lay_eff, i);
00114     tmpObject->setLayerCnt(lay_cnt, i);
00115     tmpObject->setLayerNos(lay_nos, i);
00116     tmpObject->setLayerNosRatio(lay_nos_ratio, i);
00117 
00118     sprintf(name,"LayClstPro");
00119     //tr_ClstPro[0] = (TTree*)m_inFile->Get(name);
00120     for(int j=0; j<CLST_MAX; j++) {
00121       //if( tr_ClstPro[0] != NULL ) tmpObject->setLayerClstPro(tr_ClstPro[0]->GetBinContent(j),i,j);
00122       //else tmpObject->setLayerClstPro(DEFAULT_CLST_PRO[j],i,j);
00123       tmpObject->setLayerClstPro(DEFAULT_CLST_PRO[j],i,j);
00124     }
00125     //log<<MSG::DEBUG<<"layer: " << i << "\t" << lay_eff <<endreq;              
00126   }
00127   
00128   for(int i=0; i<BOX_MAX; i++)
00129   {
00130     m_ptrIdTr->SetBoxPos( i, &part, &segment, &layer );
00131     tr_Lvl[1]->GetEntry(i);             
00132     tmpObject->setBoxEff(box_eff, part, segment, layer);
00133     tmpObject->setBoxCnt(box_cnt, part, segment, layer);
00134     tmpObject->setBoxNos(box_nos, part, segment, layer);
00135     tmpObject->setBoxNosRatio(box_nos_ratio, part, segment, layer);
00136 
00137     sprintf(name,"BoxClstPro_B%d",i);
00138     //tr_ClstPro[1] = (TTree*)m_inFile->Get(name);
00139     for(int j=0; j<CLST_MAX; j++) {
00140       //if( tr_ClstPro[1] != NULL ) tmpObject->setBoxClstPro(tr_ClstPro[1]->GetBinContent(j),part,segment,layer,j);
00141       //else tmpObject->setBoxClstPro(DEFAULT_CLST_PRO[j],part,segment,layer,j);
00142       tmpObject->setBoxClstPro(DEFAULT_CLST_PRO[j],part,segment,layer,j);
00143     }
00144     //log<<MSG::DEBUG<<"box: " << i << "\t" << box_eff <<endreq;               
00145   }
00146   
00147   for(int i=0; i<STRIP_MAX; i++)
00148   {   
00149     m_ptrIdTr->SetStripPos( i, &part, &segment, &layer, &strip );
00150     tr_Lvl[2]->GetEntry(i);
00151     tmpObject->setStripEff(str_eff, part, segment, layer, strip);
00152     tmpObject->setStripCnt(str_cnt, part, segment, layer, strip);
00153     tmpObject->setStripNos(str_nos, part, segment, layer, strip);
00154     tmpObject->setStripNosRatio(str_nos_ratio, part, segment, layer, strip);
00155     //log<<MSG::DEBUG<<"strip: " << i << "\t" << str_eff <<endreq;
00156   }
00157   refpObject=tmpObject;
00158 
00159   return StatusCode::SUCCESS;
00160 }

StatusCode RootCalBaseCnv::i_processObj DataObject *  pObject,
IOpaqueAddress *  address
[protected, virtual, inherited]
 

In case there is additional work to do on the created object.

00320                                                                       {
00321   return StatusCode::SUCCESS;
00322 }

StatusCode RootCalBaseCnv::initialize  )  [virtual, inherited]
 

00046                                       {
00047   StatusCode status = Converter::initialize();
00048 
00049   IDataProviderSvc* dp;
00050 
00051   // I guess the service names are assigned in jobOptions?
00052 
00053   serviceLocator()->getService ("CalibDataSvc",
00054                                 IID_IDataProviderSvc,
00055                                 (IInterface*&)dp);
00056   setDataProvider(dp);
00057   
00058   // Locate the Root Conversion Service
00059   serviceLocator()->getService ("CalibRootCnvSvc",
00060                                 IID_ICalibRootSvc,
00061                                 (IInterface*&) m_rootSvc);
00062 
00063   // Locate meta conversion service
00064   // Will anything need to be changed here to accommodate possibility
00065   // of two concrete implementations of ICalibMetaCnvSvc?  Would
00066   // have different storage types.  Could specify type desired
00067   // as job option.  Ditto for name of class?
00068   serviceLocator()->getService("CalibMySQLCnvSvc", 
00069                                IID_ICalibMetaCnvSvc,
00070                                 (IInterface*&)m_metaSvc);
00071 
00072   serviceLocator()->getService ("CalibDataSvc",
00073                                 IID_IInstrumentName,
00074                                 (IInterface*&)m_instrSvc);
00075 
00076   return status;
00077 }

StatusCode RootCalBaseCnv::internalCreateObj const std::string &  fname,
DataObject *&  refpObject,
IOpaqueAddress *  address
[protected, virtual, inherited]
 

This creates the transient representation of an object from the corresponding ROOT object it, then fills it and process it. This implementation actually only calls the i_* methods of the "right" converter to do the job; so the very first thing it does is get a pointer to the appropriate derived converter. Converters typically don't need to override this method but only to override/implement some of the i_* methods.

Parameters:
pRootObj pointer to the ROOT object
refpObject the object to be built
address the opaque address for this object
Returns:
status depending on the completion of the call
00267                                                                    {
00268   MsgStream log(msgSvc(), "RootCalBaseCnv");
00269    log << MSG::DEBUG<<"RootCalBaseCnv::internalCreateObj( starting ..... "<<endreq;
00270    RootCalBaseCnv* converter = this;
00271   CLID classId = address->clID();
00272 
00273   IConverter* conv = this->conversionSvc()->converter(classId);
00274   if (0 == conv) {
00275     log << MSG::WARNING
00276         << "No proper converter found for classID " << classId
00277             << ", the default converter"
00278             << " will be used. " << endreq;
00279   } else {
00280     converter = dynamic_cast <RootCalBaseCnv*> (conv);
00281     if (0 == converter) {
00282       log << MSG::ERROR
00283           << "The converter found for classID " << classId
00284               << " was not a descendent of RootCalBaseCnv as it should be "
00285               << "( was of type " << typeid (*converter).name() << "). "
00286               << "The default converter will be used" << endreq;
00287       converter = this;
00288     }
00289   }
00290 
00291     m_runfrm =*( address->ipar());
00292     m_runto =*( address->ipar()+1);
00293    // creates an object for the node found
00294    StatusCode sc = converter->i_createObj(fname, refpObject);
00295      if (sc.isFailure()) {
00296     return sc;
00297   } 
00298      CalibData::CalibBase1* tmpObject =  dynamic_cast <CalibData::CalibBase1*> (refpObject);
00299      setBaseInfo(tmpObject);
00300   // ends up the object construction
00301   sc = converter->i_processObj(refpObject, address);
00302   if (sc.isSuccess()) {
00303     log << MSG::DEBUG << "Successfully created calib. object " << endreq;
00304   }
00305   closeRead();
00306   return sc;
00307 }

const CLID & RootMucCalibDataCnv::objType  )  const
 

00045                                                {
00046   return CLID_Calib_MucCal;
00047 }

StatusCode RootCalBaseCnv::openRead const std::string &  fname  )  [protected, inherited]
 

Utility for "leaf" converters to call

Parameters:
Root file to open for read
Name of branch to be read in
ref. to pCalib pointer which will be set to address of read-in object
00095                                                           { 
00096 
00097   MsgStream log(msgSvc(), "RootCalBaseCnv");
00098 
00099   // Check fname isn't empty
00100   if (fname == std::string("")) return StatusCode::FAILURE;
00101 
00102   if (doClean() ) {
00103     log << MSG::WARNING << "Previous operation didn't clean up! " << endreq;
00104   }
00105   m_saveDir = gDirectory;
00106 
00107   std::string ourName(fname);
00108   facilities::Util::expandEnvVar(&ourName);
00109 
00110   m_inFile = new TFile(ourName.c_str());
00111   
00112   if (!m_inFile->IsOpen() ) {
00113     log << MSG::ERROR << "ROOT file " << ourName 
00114         << "could not be opened for reading " << endreq;
00115     delete m_inFile;
00116     m_inFile = 0;
00117     return StatusCode::FAILURE;
00118   }
00119   else {
00120     log << MSG::INFO
00121         << "Successfully opened ROOT file " << fname << " aka " << ourName
00122         << " for reading " << endreq;
00123   }
00124 
00125 
00126   m_inFile->cd();             //    Maybe will need this
00127 
00128 
00129   return StatusCode::SUCCESS;
00130 }

StatusCode RootCalBaseCnv::openWrite const std::string &  fname  )  [protected, virtual, inherited]
 

Utility used by derived converters to start writing a ROOT file (open TFile, make a TTree, give it a branch)

Parameters:
fname Name for new file
className Name of class for object specified in next parameter; used to name branch as well)
pCalib pointer to object used to create the branch
00145                                                            {
00146 
00147   MsgStream log(msgSvc(), "RootCalBaseCnv");
00148 
00149   // Check fname isn't empty
00150   if (fname == std::string("")) return StatusCode::FAILURE;
00151 
00152   std::string ourName(fname);
00153   facilities::Util::expandEnvVar(&ourName);
00154 
00155   if (doClean() ) {
00156     log << MSG::WARNING << "Previous operation didn't clean up! " << endreq;
00157   }
00158 
00159   m_saveDir = gDirectory;
00160 
00161  
00162   m_outFile = new TFile(ourName.c_str(), "RECREATE");
00163   if (!m_outFile->IsOpen()) {
00164     log << MSG::ERROR << "ROOT file " << fname << " aka " << ourName 
00165         << " could not be opened for writing" << endreq;
00166     delete m_outFile;
00167     m_outFile = 0;
00168     return StatusCode::FAILURE;
00169   }
00170   else {
00171     log << MSG::INFO
00172         << "Successfully opened ROOT file " << fname << " aka " << ourName
00173         << " for writing " << endreq;
00174   }
00175    m_outFile->cd();
00176   return StatusCode::SUCCESS;
00177 }

template<class Ty1, class Ty2>
destination* Converter< Ty1, Ty2 >::operator const source  )  const [inline, inherited]
 

template<class Ty1, class Ty2>
destination* Converter< Ty1, Ty2 >::operator const source  )  const [inline, inherited]
 

StatusCode RootCalBaseCnv::readRootObj TTree *  tree,
const std::string &  branch,
TObject *&  pCalib,
unsigned  index = 0
[virtual, inherited]
 

00205                                                                 {
00206   TBranch* pBranch=pTree->GetBranch(branch.c_str());
00207   pBranch->SetAddress(&pObj);
00208   int nBytes = pBranch->GetEntry(ix);
00209   return (nBytes > 0) ? StatusCode::SUCCESS : StatusCode::FAILURE;
00210  }

StatusCode RootCalBaseCnv::readRootObj const std::string &  treename,
const std::string &  branch,
TObject *&  pCalib,
unsigned  index = 0
[virtual, inherited]
 

Read in object (by default the first) from specified branch.

00197                                                                 {
00198   TTree* pTree = (TTree*)m_inFile->Get(treename.c_str());
00199 
00200   return readRootObj(pTree, branch, pObj, ix);
00201  }

virtual long RootMucCalibDataCnv::repSvcType  )  const [inline, virtual]
 

00039                                  { 
00040           return CALIBROOT_StorageType; 
00041       } 

void RootCalBaseCnv::setBaseInfo CalibData::CalibBase1 pObj  )  [protected, inherited]
 

Another utility for derived classes to use.

Another convenience for derived classes: sets information belonging to the calibration base class, namely validity interval and serial number.

00325                                                           {
00326    MsgStream log(msgSvc(), "RootCalBaseCnv");
00327    log << MSG::DEBUG<<"set the runfrm and runto Numbers in the converter"<<endreq;
00328   pObj->setrunfrm(m_runfrm);
00329   pObj->setrunto(m_runto);
00330 }

const unsigned char RootCalBaseCnv::storageType  )  [inline, static, inherited]
 

00062 {return CALIBROOT_StorageType;}


Friends And Related Function Documentation

friend class CnvFactory<RootMucCalibDataCnv> [friend]
 


Member Data Documentation

TFile* RootCalBaseCnv::m_inFile [protected, inherited]
 

IInstrumentName* RootCalBaseCnv::m_instrSvc [protected, inherited]
 

ICalibMetaCnvSvc* RootCalBaseCnv::m_metaSvc [protected, inherited]
 

TFile* RootCalBaseCnv::m_outFile [protected, inherited]
 

CalibData::MucIdTransform* RootMucCalibDataCnv::m_ptrIdTr [private]
 

ICalibRootSvc* RootCalBaseCnv::m_rootSvc [protected, inherited]
 

int RootCalBaseCnv::m_runfrm [protected, inherited]
 

int RootCalBaseCnv::m_runto [protected, inherited]
 

TDirectory* RootCalBaseCnv::m_saveDir [protected, inherited]
 

int RootCalBaseCnv::m_serNo [protected, inherited]
 

TTree* RootCalBaseCnv::m_ttree [protected, inherited]
 

ITime* RootCalBaseCnv::m_vend [protected, inherited]
 

ITime* RootCalBaseCnv::m_vstart [protected, inherited]
 


The documentation for this class was generated from the following files:
Generated on Wed Feb 2 18:49:02 2011 for BOSS6.5.5 by  doxygen 1.3.9.1