CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
fwlite::internal::BranchMapReaderStrategyV11 Class Reference
Inheritance diagram for fwlite::internal::BranchMapReaderStrategyV11:
fwlite::internal::Strategy fwlite::internal::BMRStrategy

Public Member Functions

edm::BranchListIndexes const & branchListIndexes () const override
 
 BranchMapReaderStrategyV11 (TFile *file, int fileVersion)
 
edm::BranchID productToBranchID (edm::ProductID const &pid) override
 
bool updateEvent (Long_t eventEntry) override
 
bool updateFile (TFile *file) override
 
bool updateLuminosityBlock (Long_t luminosityBlockEntry) override
 
bool updateMap () override
 
bool updateRun (Long_t runEntry) override
 
- Public Member Functions inherited from fwlite::internal::Strategy
edm::BranchDescription const & branchIDToBranch (edm::BranchID const &bid) const override
 
std::vector< edm::BranchDescription > const & getBranchDescriptions () override
 
TBranch * getBranchRegistry (edm::ProductRegistry **pReg)
 
edm::BranchDescription const & productToBranch (edm::ProductID const &pid) override
 
edm::BranchID productToBranchID (edm::ProductID const &pid) override
 
 Strategy (TFile *file, int fileVersion)
 
edm::ThinnedAssociationsHelper const & thinnedAssociationsHelper () const override
 
 ~Strategy () override
 
- Public Member Functions inherited from fwlite::internal::BMRStrategy
 BMRStrategy (TFile *file, int fileVersion)
 
virtual const edm::BranchDescriptionbranchIDToBranch (const edm::BranchID &bid) const =0
 
virtual const edm::BranchDescriptionproductToBranch (const edm::ProductID &pid)=0
 
virtual edm::BranchID productToBranchID (const edm::ProductID &pid)=0
 
virtual ~BMRStrategy ()
 

Private Attributes

edm::propagate_const< std::unique_ptr< edm::BranchIDLists > > branchIDLists_
 
edm::propagate_const< TTree * > eventHistoryTree_
 
edm::History history_
 
edm::History const * pHistory_
 

Additional Inherited Members

- Public Types inherited from fwlite::internal::Strategy
typedef std::map< edm::BranchID, edm::BranchDescriptionbidToDesc
 
- Public Attributes inherited from fwlite::internal::Strategy
std::vector< edm::BranchDescriptionbDesc_
 
bidToDesc branchDescriptionMap_
 
bool mapperFilled_
 
edm::propagate_const< std::unique_ptr< edm::ThinnedAssociationsHelper > > thinnedAssociationsHelper_
 
- Public Attributes inherited from fwlite::internal::BMRStrategy
edm::propagate_const< TFile * > currentFile_
 
Long_t eventEntry_
 
edm::propagate_const< TTree * > eventTree_
 
TUUID fileUUID_
 
int fileVersion_
 
Long_t luminosityBlockEntry_
 
edm::propagate_const< TTree * > luminosityBlockTree_
 
Long_t runEntry_
 
edm::propagate_const< TTree * > runTree_
 

Detailed Description

Definition at line 325 of file BranchMapReader.cc.

Constructor & Destructor Documentation

fwlite::internal::BranchMapReaderStrategyV11::BranchMapReaderStrategyV11 ( TFile *  file,
int  fileVersion 
)

Member Function Documentation

edm::BranchListIndexes const& fwlite::internal::BranchMapReaderStrategyV11::branchListIndexes ( ) const
inlineoverridevirtual

Implements fwlite::internal::BMRStrategy.

Definition at line 334 of file BranchMapReader.cc.

334 { return history_.branchListIndexes(); }
BranchListIndexes const & branchListIndexes() const
Definition: History.h:50
edm::BranchID fwlite::internal::BranchMapReaderStrategyV11::productToBranchID ( edm::ProductID const &  pid)
override

Definition at line 435 of file BranchMapReader.cc.

References branchIDLists_, edm::History::branchListIndexes(), history_, edm::productIDToBranchID(), and updateMap().

435  {
436  updateMap();
438  }
edm::propagate_const< std::unique_ptr< edm::BranchIDLists > > branchIDLists_
BranchID productIDToBranchID(ProductID const &pid, BranchIDLists const &lists, BranchListIndexes const &indexes)
BranchListIndexes const & branchListIndexes() const
Definition: History.h:50
bool fwlite::internal::BranchMapReaderStrategyV11::updateEvent ( Long_t  eventEntry)
overridevirtual

Reimplemented from fwlite::internal::Strategy.

Definition at line 348 of file BranchMapReader.cc.

References fwlite::internal::BMRStrategy::eventEntry_, and fwlite::internal::Strategy::mapperFilled_.

348  {
349  // std::cout << "v11 updateevent " << newevent << std::endl;
350  if (newevent != eventEntry_) {
351  eventEntry_ = newevent;
352  mapperFilled_ = false;
353  }
354  return true;
355  }
bool fwlite::internal::BranchMapReaderStrategyV11::updateFile ( TFile *  file)
overridevirtual

Reimplemented from fwlite::internal::Strategy.

Definition at line 373 of file BranchMapReader.cc.

References b, fwlite::internal::Strategy::bDesc_, beamvalidation::br, fwlite::internal::Strategy::branchDescriptionMap_, edm::BranchDescription::branchID(), edm::poolNames::branchIDListBranchName(), branchIDLists_, edm::BranchDescription::branchType(), fwlite::internal::BMRStrategy::currentFile_, edm::errors::EventCorruption, eventHistoryTree_, edm::poolNames::eventHistoryTreeName(), Exception, edm::propagate_const< T >::get(), fwlite::internal::Strategy::getBranchRegistry(), edm::InEvent, edm::BranchDescription::init(), fwlite::internal::Strategy::mapperFilled_, edm::poolNames::metaDataTreeName(), parseEventContent::prod, edm::ProductRegistry::productListUpdator(), edm::ProductRegistry::setFrozen(), and fwlite::internal::Strategy::updateFile().

Referenced by BranchMapReaderStrategyV11().

373  {
375  mapperFilled_ = false;
376  TTree* metaDataTree = dynamic_cast<TTree*>(currentFile_->Get(edm::poolNames::metaDataTreeName().c_str()));
377 
378  if (nullptr == metaDataTree) {
380  << "No " << edm::poolNames::metaDataTreeName() << " TTree in file";
381  }
382  branchIDLists_ = std::make_unique<edm::BranchIDLists>();
383  edm::BranchIDLists* branchIDListsPtr = branchIDLists_.get();
384  if (metaDataTree->FindBranch(edm::poolNames::branchIDListBranchName().c_str()) != nullptr) {
385  TBranch* b = metaDataTree->GetBranch(edm::poolNames::branchIDListBranchName().c_str());
386  b->SetAddress(&branchIDListsPtr);
387  b->GetEntry(0);
388  // std::cout << "--> " << branchIDLists_->size() << std::endl;
389  } else {
390  throw edm::Exception(edm::errors::EventCorruption) << "FindBranch of branchIDList failed";
391  return false;
392  }
393 
394  eventHistoryTree_ = dynamic_cast<TTree*>(currentFile_->Get(edm::poolNames::eventHistoryTreeName().c_str()));
395 
396  branchDescriptionMap_.clear();
397  bDesc_.clear();
398 
400  edm::ProductRegistry* pReg = &reg;
401  TBranch* br = getBranchRegistry(&pReg);
402 
403  if (nullptr != br) {
405 
406  for (auto& item : prodList) {
407  edm::BranchDescription& prod = item.second;
408  if (edm::InEvent == prod.branchType()) {
409  // call to regenerate branchName
410  prod.init();
412  // std::cout << "v11 updatefile " << prod.branchID() << std::endl;
413  }
414  }
415  }
416  reg.setFrozen(false);
417  return nullptr != br;
418  }
BranchType const & branchType() const
std::vector< BranchIDList > BranchIDLists
Definition: BranchIDList.h:19
edm::propagate_const< TFile * > currentFile_
std::map< BranchKey, BranchDescription > ProductList
bool updateFile(TFile *file) override
edm::propagate_const< std::unique_ptr< edm::BranchIDLists > > branchIDLists_
std::vector< edm::BranchDescription > bDesc_
edm::propagate_const< TTree * > eventHistoryTree_
TBranch * getBranchRegistry(edm::ProductRegistry **pReg)
BranchID const & branchID() const
std::string const & metaDataTreeName()
Definition: BranchType.cc:169
void setFrozen(bool initializeLookupInfo=true)
element_type const * get() const
double b
Definition: hdecay.h:120
ProductList & productListUpdator()
std::string const & branchIDListBranchName()
Definition: BranchType.cc:209
std::string const & eventHistoryTreeName()
Definition: BranchType.cc:274
bool fwlite::internal::BranchMapReaderStrategyV11::updateLuminosityBlock ( Long_t  luminosityBlockEntry)
overridevirtual

Reimplemented from fwlite::internal::Strategy.

Definition at line 357 of file BranchMapReader.cc.

References fwlite::internal::BMRStrategy::luminosityBlockEntry_, and fwlite::internal::Strategy::mapperFilled_.

357  {
358  if (newlumi != luminosityBlockEntry_) {
359  luminosityBlockEntry_ = newlumi;
360  mapperFilled_ = false;
361  }
362  return true;
363  }
bool fwlite::internal::BranchMapReaderStrategyV11::updateMap ( )
overridevirtual

Reimplemented from fwlite::internal::Strategy.

Definition at line 420 of file BranchMapReader.cc.

References edm::errors::EventCorruption, fwlite::internal::BMRStrategy::eventEntry_, edm::poolNames::eventHistoryBranchName(), eventHistoryTree_, Exception, fwlite::internal::Strategy::mapperFilled_, and pHistory_.

Referenced by productToBranchID().

420  {
421  if (!mapperFilled_) {
422  TBranch* eventHistoryBranch = eventHistoryTree_->GetBranch(edm::poolNames::eventHistoryBranchName().c_str());
423  if (!eventHistoryBranch) {
424  throw edm::Exception(edm::errors::EventCorruption) << "Failed to find history branch in event history tree";
425  return false;
426  }
427  // yes, SetAddress really does need to be called every time...
428  eventHistoryBranch->SetAddress(&pHistory_);
429  eventHistoryTree_->GetEntry(eventEntry_);
430  mapperFilled_ = true;
431  }
432  return true;
433  }
std::string const & eventHistoryBranchName()
Definition: BranchType.cc:244
edm::propagate_const< TTree * > eventHistoryTree_
bool fwlite::internal::BranchMapReaderStrategyV11::updateRun ( Long_t  runEntry)
overridevirtual

Reimplemented from fwlite::internal::Strategy.

Definition at line 365 of file BranchMapReader.cc.

References fwlite::internal::Strategy::mapperFilled_, and fwlite::internal::BMRStrategy::runEntry_.

365  {
366  if (newRun != runEntry_) {
367  runEntry_ = newRun;
368  mapperFilled_ = false;
369  }
370  return true;
371  }

Member Data Documentation

edm::propagate_const<std::unique_ptr<edm::BranchIDLists> > fwlite::internal::BranchMapReaderStrategyV11::branchIDLists_
private

Definition at line 337 of file BranchMapReader.cc.

Referenced by productToBranchID(), and updateFile().

edm::propagate_const<TTree*> fwlite::internal::BranchMapReaderStrategyV11::eventHistoryTree_
private

Definition at line 338 of file BranchMapReader.cc.

Referenced by updateFile(), and updateMap().

edm::History fwlite::internal::BranchMapReaderStrategyV11::history_
private

Definition at line 339 of file BranchMapReader.cc.

Referenced by productToBranchID().

edm::History const* fwlite::internal::BranchMapReaderStrategyV11::pHistory_
private

Definition at line 340 of file BranchMapReader.cc.

Referenced by updateMap().