CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
fwlite::BranchMapReader Class Reference

#include <BranchMapReader.h>

Public Member Functions

const edm::BranchListIndexesbranchListIndexes () const
 
 BranchMapReader (TFile *file)
 
 BranchMapReader ()
 
const std::vector
< edm::BranchDescription > & 
getBranchDescriptions ()
 
Long_t getEventEntry () const
 
TTree * getEventTree () const
 
TFile * getFile () const
 
TUUID getFileUUID () const
 
int getFileVersion (TFile *file)
 
int getFileVersion () const
 
Long_t getLuminosityBlockEntry () const
 
TTree * getLuminosityBlockTree () const
 
Long_t getRunEntry () const
 
TTree * getRunTree () const
 
const edm::BranchDescriptionproductToBranch (const edm::ProductID &pid)
 
bool updateEvent (Long_t eventEntry)
 
bool updateFile (TFile *file)
 
bool updateLuminosityBlock (Long_t luminosityBlockEntry)
 
bool updateRun (Long_t runEntry)
 

Private Member Functions

std::auto_ptr
< internal::BMRStrategy
newStrategy (TFile *file, int fileVersion)
 

Private Attributes

int fileVersion_
 
std::auto_ptr
< internal::BMRStrategy
strategy_
 

Detailed Description

Definition at line 63 of file BranchMapReader.h.

Constructor & Destructor Documentation

BranchMapReader::BranchMapReader ( TFile *  file)

Definition at line 540 of file BranchMapReader.cc.

References edm::hlt::Exception, getFileVersion(), newStrategy(), and strategy_.

540  :
541  fileVersion_(-1) {
542  if(0==file) {
543  throw cms::Exception("NoFile")<<"The TFile pointer is null";
544  }
546 }
std::auto_ptr< internal::BMRStrategy > newStrategy(TFile *file, int fileVersion)
std::auto_ptr< internal::BMRStrategy > strategy_
fwlite::BranchMapReader::BranchMapReader ( )
inline

Definition at line 66 of file BranchMapReader.h.

66 : strategy_(0),fileVersion_(0) {}
std::auto_ptr< internal::BMRStrategy > strategy_

Member Function Documentation

const edm::BranchListIndexes& fwlite::BranchMapReader::branchListIndexes ( ) const
inline

Definition at line 90 of file BranchMapReader.h.

References strategy_.

90 { strategy_->updateMap(); return strategy_->branchListIndexes(); }
std::auto_ptr< internal::BMRStrategy > strategy_
std::vector< edm::BranchDescription > const & BranchMapReader::getBranchDescriptions ( )

Definition at line 612 of file BranchMapReader.cc.

References strategy_.

Referenced by fwlite::Event::getBranchDescriptions().

612  {
613  return strategy_->getBranchDescriptions();
614 }
std::auto_ptr< internal::BMRStrategy > strategy_
Long_t fwlite::BranchMapReader::getEventEntry ( ) const
inline
TTree* fwlite::BranchMapReader::getEventTree ( ) const
inline
TFile* fwlite::BranchMapReader::getFile ( ) const
inline

Definition at line 81 of file BranchMapReader.h.

References strategy_.

Referenced by fwlite::EntryFinder::fillIndex(), fwlite::Event::fillParameterSetRegistry(), BareRootProductGetter::getIt(), fwlite::Event::getTFile(), and fwlite::Event::history().

81 { return strategy_->currentFile_; }
std::auto_ptr< internal::BMRStrategy > strategy_
TUUID fwlite::BranchMapReader::getFileUUID ( ) const
inline

Definition at line 85 of file BranchMapReader.h.

References strategy_.

85 { return strategy_->fileUUID_; }
std::auto_ptr< internal::BMRStrategy > strategy_
int BranchMapReader::getFileVersion ( TFile *  file)

Definition at line 552 of file BranchMapReader.cc.

References edm::poolNames::fileFormatVersionBranchName(), fileVersion_, edm::poolNames::metaDataTreeName(), v, and edm::FileFormatVersion::value().

Referenced by fwlite::Event::Event().

552  {
553  TTree* metaDataTree = dynamic_cast<TTree*>(file->Get(edm::poolNames::metaDataTreeName().c_str()));
554  if(0==metaDataTree) {
555  return 0;
556  }
557 
560  TBranch* bVer = metaDataTree->GetBranch(edm::poolNames::fileFormatVersionBranchName().c_str());
561  bVer->SetAddress(&pV);
562  bVer->GetEntry(0);
563  fileVersion_ = v.value();
564  return v.value();
565 }
std::string const & fileFormatVersionBranchName()
Definition: BranchType.cc:212
std::string const & metaDataTreeName()
Definition: BranchType.cc:167
mathSSE::Vec4< T > v
int fwlite::BranchMapReader::getFileVersion ( ) const
inline

Definition at line 79 of file BranchMapReader.h.

References fileVersion_.

Referenced by BranchMapReader(), and updateFile().

79 { return fileVersion_;}
Long_t fwlite::BranchMapReader::getLuminosityBlockEntry ( ) const
inline

Definition at line 87 of file BranchMapReader.h.

References strategy_.

87 { return strategy_->luminosityBlockEntry_; }
std::auto_ptr< internal::BMRStrategy > strategy_
TTree* fwlite::BranchMapReader::getLuminosityBlockTree ( ) const
inline

Definition at line 83 of file BranchMapReader.h.

References strategy_.

83 { return strategy_->luminosityBlockTree_; }
std::auto_ptr< internal::BMRStrategy > strategy_
Long_t fwlite::BranchMapReader::getRunEntry ( ) const
inline

Definition at line 88 of file BranchMapReader.h.

References strategy_.

88 { return strategy_->runEntry_; }
std::auto_ptr< internal::BMRStrategy > strategy_
TTree* fwlite::BranchMapReader::getRunTree ( ) const
inline

Definition at line 84 of file BranchMapReader.h.

References strategy_.

84 { return strategy_->runTree_; }
std::auto_ptr< internal::BMRStrategy > strategy_
std::auto_ptr< internal::BMRStrategy > BranchMapReader::newStrategy ( TFile *  file,
int  fileVersion 
)
private

Definition at line 618 of file BranchMapReader.cc.

References alignCSCRings::s.

Referenced by BranchMapReader(), and updateFile().

618  {
619  std::auto_ptr<internal::BMRStrategy> s;
620 
621  if(fileVersion >= 17) {
622  s = std::auto_ptr<internal::BMRStrategy>(new internal::BranchMapReaderStrategyV17(file, fileVersion));
623  } else if(fileVersion >= 11) {
624  s = std::auto_ptr<internal::BMRStrategy>(new internal::BranchMapReaderStrategyV11(file, fileVersion));
625  } else if(fileVersion >= 8) {
626  s = std::auto_ptr<internal::BMRStrategy>(new internal::BranchMapReaderStrategyV8(file, fileVersion));
627  } else if(fileVersion >= 7) {
628  s = std::auto_ptr<internal::BMRStrategy>(new internal::BranchMapReaderStrategyV7(file, fileVersion));
629  } else {
630  s = std::auto_ptr<internal::BMRStrategy>(new internal::BranchMapReaderStrategyV1(file, fileVersion));
631  }
632  return s;
633 }
edm::BranchDescription const & BranchMapReader::productToBranch ( const edm::ProductID pid)

Definition at line 607 of file BranchMapReader.cc.

References strategy_.

Referenced by BareRootProductGetter::createNewBuffer().

607  {
608  return strategy_->productToBranch(pid);
609 }
std::auto_ptr< internal::BMRStrategy > strategy_
bool BranchMapReader::updateEvent ( Long_t  eventEntry)

Definition at line 567 of file BranchMapReader.cc.

References strategy_.

Referenced by fwlite::Event::Event(), BareRootProductGetter::getIt(), fwlite::Event::operator++(), fwlite::Event::to(), and fwlite::Event::toBegin().

567  {
568  return strategy_->updateEvent(newevent);
569 }
std::auto_ptr< internal::BMRStrategy > strategy_
bool BranchMapReader::updateFile ( TFile *  file)

Definition at line 579 of file BranchMapReader.cc.

References edm::poolNames::eventTreeName(), getFileVersion(), newStrategy(), and strategy_.

Referenced by BareRootProductGetter::getIt().

579  {
580  if(0 == strategy_.get()) {
582  return true;
583  }
584 
585  TFile* currentFile(strategy_->currentFile_);
586  bool isNew(file != currentFile);
587 
588  if(!isNew) {
589  //could still have a new TFile which just happens to share the same memory address as the previous file
590  //will assume that if the Event tree's address and UUID are the same as before then we do not have
591  // to treat this like a new file
592  TTree* eventTreeTemp = dynamic_cast<TTree*>(currentFile->Get(edm::poolNames::eventTreeName().c_str()));
593  isNew = eventTreeTemp != strategy_->eventTree_ || strategy_->fileUUID_ != currentFile->GetUUID();
594  }
595  if(isNew) {
596  int fileVersion = getFileVersion(file);
597  if(fileVersion != strategy_->fileVersion_) {
598  strategy_ = newStrategy(file, fileVersion);
599  } else {
600  strategy_->updateFile(file);
601  }
602  }
603  return isNew;
604 }
std::auto_ptr< internal::BMRStrategy > newStrategy(TFile *file, int fileVersion)
std::auto_ptr< internal::BMRStrategy > strategy_
std::string const & eventTreeName()
Definition: BranchType.cc:254
bool BranchMapReader::updateLuminosityBlock ( Long_t  luminosityBlockEntry)

Definition at line 571 of file BranchMapReader.cc.

References strategy_.

571  {
572  return strategy_->updateLuminosityBlock(newlumi);
573 }
std::auto_ptr< internal::BMRStrategy > strategy_
bool BranchMapReader::updateRun ( Long_t  runEntry)

Definition at line 575 of file BranchMapReader.cc.

References strategy_.

575  {
576  return strategy_->updateRun(newRun);
577 }
std::auto_ptr< internal::BMRStrategy > strategy_

Member Data Documentation

int fwlite::BranchMapReader::fileVersion_
private

Definition at line 96 of file BranchMapReader.h.

Referenced by getFileVersion().

std::auto_ptr<internal::BMRStrategy> fwlite::BranchMapReader::strategy_
private