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::BranchDescriptionbranchIDToBranch (const edm::BranchID &bid) const
 
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)
 
edm::BranchID productToBranchID (const edm::ProductID &pid)
 
const
edm::ThinnedAssociationsHelper
thinnedAssociationsHelper () const
 
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 69 of file BranchMapReader.h.

Constructor & Destructor Documentation

BranchMapReader::BranchMapReader ( TFile *  file)

Definition at line 571 of file BranchMapReader.cc.

References Exception, getFileVersion(), newStrategy(), and strategy_.

571  :
572  fileVersion_(-1) {
573  if(0==file) {
574  throw cms::Exception("NoFile")<<"The TFile pointer is null";
575  }
577 }
std::auto_ptr< internal::BMRStrategy > newStrategy(TFile *file, int fileVersion)
std::auto_ptr< internal::BMRStrategy > strategy_
fwlite::BranchMapReader::BranchMapReader ( )
inline

Definition at line 72 of file BranchMapReader.h.

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

Member Function Documentation

const edm::BranchDescription& fwlite::BranchMapReader::branchIDToBranch ( const edm::BranchID bid) const
inline

Definition at line 85 of file BranchMapReader.h.

References strategy_.

Referenced by BareRootProductGetter::createNewBuffer().

85 { return strategy_->branchIDToBranch(bid); }
std::auto_ptr< internal::BMRStrategy > strategy_
const edm::BranchListIndexes& fwlite::BranchMapReader::branchListIndexes ( ) const
inline

Definition at line 98 of file BranchMapReader.h.

References strategy_.

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

Definition at line 643 of file BranchMapReader.cc.

References strategy_.

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

643  {
644  return strategy_->getBranchDescriptions();
645 }
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 89 of file BranchMapReader.h.

References strategy_.

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

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

Definition at line 93 of file BranchMapReader.h.

References strategy_.

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

Definition at line 583 of file BranchMapReader.cc.

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

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

583  {
584  TTree* metaDataTree = dynamic_cast<TTree*>(file->Get(edm::poolNames::metaDataTreeName().c_str()));
585  if(0==metaDataTree) {
586  return 0;
587  }
588 
591  TBranch* bVer = metaDataTree->GetBranch(edm::poolNames::fileFormatVersionBranchName().c_str());
592  bVer->SetAddress(&pV);
593  bVer->GetEntry(0);
594  fileVersion_ = v.value();
595  return v.value();
596 }
std::string const & fileFormatVersionBranchName()
Definition: BranchType.cc:218
std::string const & metaDataTreeName()
Definition: BranchType.cc:168
int fwlite::BranchMapReader::getFileVersion ( ) const
inline

Definition at line 87 of file BranchMapReader.h.

References fileVersion_.

Referenced by BranchMapReader(), and updateFile().

Long_t fwlite::BranchMapReader::getLuminosityBlockEntry ( ) const
inline

Definition at line 95 of file BranchMapReader.h.

References strategy_.

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

Definition at line 91 of file BranchMapReader.h.

References strategy_.

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

Definition at line 96 of file BranchMapReader.h.

References strategy_.

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

Definition at line 92 of file BranchMapReader.h.

References strategy_.

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

Definition at line 649 of file BranchMapReader.cc.

References alignCSCRings::s.

Referenced by BranchMapReader(), and updateFile().

649  {
650  std::auto_ptr<internal::BMRStrategy> s;
651 
652  if(fileVersion >= 17) {
653  s = std::auto_ptr<internal::BMRStrategy>(new internal::BranchMapReaderStrategyV17(file, fileVersion));
654  } else if(fileVersion >= 11) {
655  s = std::auto_ptr<internal::BMRStrategy>(new internal::BranchMapReaderStrategyV11(file, fileVersion));
656  } else if(fileVersion >= 8) {
657  s = std::auto_ptr<internal::BMRStrategy>(new internal::BranchMapReaderStrategyV8(file, fileVersion));
658  } else if(fileVersion >= 7) {
659  s = std::auto_ptr<internal::BMRStrategy>(new internal::BranchMapReaderStrategyV7(file, fileVersion));
660  } else {
661  s = std::auto_ptr<internal::BMRStrategy>(new internal::BranchMapReaderStrategyV1(file, fileVersion));
662  }
663  return s;
664 }
edm::BranchDescription const & BranchMapReader::productToBranch ( const edm::ProductID pid)

Definition at line 638 of file BranchMapReader.cc.

References strategy_.

638  {
639  return strategy_->productToBranch(pid);
640 }
std::auto_ptr< internal::BMRStrategy > strategy_
edm::BranchID fwlite::BranchMapReader::productToBranchID ( const edm::ProductID pid)
inline

Definition at line 83 of file BranchMapReader.h.

References strategy_.

Referenced by BareRootProductGetter::getIt(), BareRootProductGetter::getThinnedProduct(), and BareRootProductGetter::getThinnedProducts().

83 { return strategy_->productToBranchID(pid); }
std::auto_ptr< internal::BMRStrategy > strategy_
const edm::ThinnedAssociationsHelper& fwlite::BranchMapReader::thinnedAssociationsHelper ( ) const
inline

Definition at line 99 of file BranchMapReader.h.

References strategy_.

Referenced by BareRootProductGetter::getThinnedProduct(), and BareRootProductGetter::getThinnedProducts().

99 { return strategy_->thinnedAssociationsHelper(); }
std::auto_ptr< internal::BMRStrategy > strategy_
bool BranchMapReader::updateEvent ( Long_t  eventEntry)

Definition at line 598 of file BranchMapReader.cc.

References strategy_.

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

598  {
599  return strategy_->updateEvent(newevent);
600 }
std::auto_ptr< internal::BMRStrategy > strategy_
bool BranchMapReader::updateFile ( TFile *  file)

Definition at line 610 of file BranchMapReader.cc.

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

Referenced by BareRootProductGetter::getIt().

610  {
611  if(0 == strategy_.get()) {
613  return true;
614  }
615 
616  TFile* currentFile(strategy_->currentFile_);
617  bool isNew(file != currentFile);
618 
619  if(!isNew) {
620  //could still have a new TFile which just happens to share the same memory address as the previous file
621  //will assume that if the Event tree's address and UUID are the same as before then we do not have
622  // to treat this like a new file
623  TTree* eventTreeTemp = dynamic_cast<TTree*>(currentFile->Get(edm::poolNames::eventTreeName().c_str()));
624  isNew = eventTreeTemp != strategy_->eventTree_ || strategy_->fileUUID_ != currentFile->GetUUID();
625  }
626  if(isNew) {
627  int fileVersion = getFileVersion(file);
628  if(fileVersion != strategy_->fileVersion_) {
629  strategy_ = newStrategy(file, fileVersion);
630  } else {
631  strategy_->updateFile(file);
632  }
633  }
634  return isNew;
635 }
std::auto_ptr< internal::BMRStrategy > newStrategy(TFile *file, int fileVersion)
std::auto_ptr< internal::BMRStrategy > strategy_
std::string const & eventTreeName()
Definition: BranchType.cc:260
bool BranchMapReader::updateLuminosityBlock ( Long_t  luminosityBlockEntry)

Definition at line 602 of file BranchMapReader.cc.

References strategy_.

602  {
603  return strategy_->updateLuminosityBlock(newlumi);
604 }
std::auto_ptr< internal::BMRStrategy > strategy_
bool BranchMapReader::updateRun ( Long_t  runEntry)

Definition at line 606 of file BranchMapReader.cc.

References strategy_.

606  {
607  return strategy_->updateRun(newRun);
608 }
std::auto_ptr< internal::BMRStrategy > strategy_

Member Data Documentation

int fwlite::BranchMapReader::fileVersion_
private

Definition at line 105 of file BranchMapReader.h.

Referenced by getFileVersion().

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