CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes | Friends
fwlite::LuminosityBlock Class Reference

#include <LuminosityBlock.h>

Inheritance diagram for fwlite::LuminosityBlock:
fwlite::LuminosityBlockBase edm::LuminosityBlockBase

Public Member Functions

bool atEnd () const override
 
std::vector< edm::BranchDescription > const & getBranchDescriptions () const
 
virtual std::string const getBranchNameFor (std::type_info const &, char const *, char const *, char const *) const
 
bool getByLabel (std::type_info const &, char const *, char const *, char const *, void *) const override
 
edm::WrapperBase const * getByProductID (edm::ProductID const &) const
 
fwlite::Run const & getRun () const
 
bool isValid () const
 
 LuminosityBlock (TFile *iFile)
 
 LuminosityBlock (std::shared_ptr< BranchMapReader > branchMap, std::shared_ptr< RunFactory > runFactory)
 
 LuminosityBlock (const LuminosityBlock &)=delete
 
edm::LuminosityBlockAuxiliary const & luminosityBlockAuxiliary () const override
 
 operator bool () const
 
const LuminosityBlockoperator++ () override
 
const LuminosityBlockoperator= (const LuminosityBlock &)=delete
 
Long64_t size () const
 
bool to (edm::RunNumber_t run, edm::LuminosityBlockNumber_t lumi)
 Go to event by Run & LuminosityBlock number. More...
 
const LuminosityBlocktoBegin () override
 
 ~LuminosityBlock () override
 
- Public Member Functions inherited from fwlite::LuminosityBlockBase
virtual Long64_t fileIndex () const
 
 LuminosityBlockBase ()
 
virtual Long64_t secondaryFileIndex () const
 
 ~LuminosityBlockBase () override
 
- Public Member Functions inherited from edm::LuminosityBlockBase
Timestamp const & beginTime () const
 
Timestamp const & endTime () const
 
template<typename PROD >
bool getByLabel (InputTag const &tag, Handle< PROD > &result) const
 same as above, but using the InputTag class More...
 
template<class T >
bool getByLabel (const InputTag &tag, Handle< T > &result) const
 
LuminosityBlockID id () const
 
LuminosityBlockNumber_t luminosityBlock () const
 
 LuminosityBlockBase ()
 
RunNumber_t run () const
 

Static Public Member Functions

static void throwProductNotFoundException (std::type_info const &, char const *, char const *, char const *)
 

Private Member Functions

const edm::ProcessHistoryhistory () const
 
void updateAux (Long_t lumiIndex) const
 

Private Attributes

edm::LuminosityBlockAuxiliary aux_
 
TBranch * auxBranch_
 
std::shared_ptr< BranchMapReaderbranchMap_
 
DataGetterHelper dataHelper_
 
EntryFinder entryFinder_
 
int fileVersion_
 
edm::ProcessHistoryMap historyMap_
 
std::vector< char const * > labels_
 
edm::LuminosityBlockAuxiliary const * pAux_
 
edm::LuminosityBlockAux const * pOldAux_
 
std::vector< std::string > procHistoryNames_
 
std::shared_ptr< fwlite::Runrun_
 
std::shared_ptr< RunFactoryrunFactory_
 

Friends

class internal::ProductGetter
 
class LumiHistoryGetter
 

Detailed Description

Definition at line 57 of file LuminosityBlock.h.

Constructor & Destructor Documentation

◆ LuminosityBlock() [1/3]

LuminosityBlock::LuminosityBlock ( TFile *  iFile)

Definition at line 45 of file LuminosityBlock.cc.

References auxBranch_, branchMap_, edm::BranchTypeToAuxiliaryBranchName(), Exception, fileVersion_, edm::InLumi, edm::poolNames::luminosityBlockTreeName(), pAux_, and runFactory_.

46  : branchMap_(new BranchMapReader(iFile)),
47  pAux_(&aux_),
48  pOldAux_(nullptr),
49  fileVersion_(-1),
50  dataHelper_(branchMap_->getLuminosityBlockTree(), std::make_shared<LumiHistoryGetter>(this), branchMap_) {
51  if (nullptr == iFile) {
52  throw cms::Exception("NoFile") << "The TFile pointer passed to the constructor was null";
53  }
54 
55  if (nullptr == branchMap_->getLuminosityBlockTree()) {
56  throw cms::Exception("NoLumiTree") << "The TFile contains no TTree named "
58  }
59  //need to know file version in order to determine how to read the basic product info
60  fileVersion_ = branchMap_->getFileVersion(iFile);
61 
62  //got this logic from IOPool/Input/src/RootFile.cc
63 
64  TTree* luminosityBlockTree = branchMap_->getLuminosityBlockTree();
65  if (fileVersion_ >= 3) {
66  auxBranch_ = luminosityBlockTree->GetBranch(edm::BranchTypeToAuxiliaryBranchName(edm::InLumi).c_str());
67  if (nullptr == auxBranch_) {
68  throw cms::Exception("NoLuminosityBlockAuxilliary")
69  << "The TTree " << edm::poolNames::luminosityBlockTreeName()
70  << " does not contain a branch named 'LuminosityBlockAuxiliary'";
71  }
72  auxBranch_->SetAddress(&pAux_);
73  } else {
74  throw cms::Exception("OldFileVersion") << "The FWLite Luminosity Block code des not support old file versions";
75  // This code commented from fwlite::Event. May be portable if needed.
76  // pOldAux_ = new edm::EventAux();
77  // auxBranch_ = luminosityBlockTree->GetBranch(edm::BranchTypeToAuxBranchName(edm::InLuminosityBlock).c_str());
78  // if(nullptr == auxBranch_) {
79  // throw cms::Exception("NoLuminosityBlockAux")<<"The TTree "
80  // <<edm::poolNames::luminosityBlockTreeName()
81  // <<" does not contain a branch named 'LuminosityBlockAux'";
82  // }
83  // auxBranch_->SetAddress(&pOldAux_);
84  }
85  branchMap_->updateLuminosityBlock(0);
86  runFactory_ = std::make_shared<RunFactory>();
87  }
DataGetterHelper dataHelper_
edm::LuminosityBlockAuxiliary aux_
std::string const & luminosityBlockTreeName()
Definition: BranchType.cc:225
edm::LuminosityBlockAuxiliary const * pAux_
std::shared_ptr< BranchMapReader > branchMap_
std::shared_ptr< RunFactory > runFactory_
std::string const & BranchTypeToAuxiliaryBranchName(BranchType const &branchType)
Definition: BranchType.cc:116
edm::LuminosityBlockAux const * pOldAux_

◆ LuminosityBlock() [2/3]

LuminosityBlock::LuminosityBlock ( std::shared_ptr< BranchMapReader branchMap,
std::shared_ptr< RunFactory runFactory 
)

Definition at line 89 of file LuminosityBlock.cc.

References auxBranch_, branchMap_, edm::BranchTypeToAuxiliaryBranchName(), Exception, fileVersion_, edm::InLumi, edm::poolNames::luminosityBlockTreeName(), and pAux_.

90  : branchMap_(branchMap),
91  pAux_(&aux_),
92  pOldAux_(nullptr),
93  fileVersion_(-1),
94  dataHelper_(branchMap_->getLuminosityBlockTree(), std::make_shared<LumiHistoryGetter>(this), branchMap_),
95  runFactory_(runFactory) {
96  if (nullptr == branchMap_->getLuminosityBlockTree()) {
97  throw cms::Exception("NoLumiTree") << "The TFile contains no TTree named "
99  }
100  //need to know file version in order to determine how to read the basic event info
101  fileVersion_ = branchMap_->getFileVersion();
102  //got this logic from IOPool/Input/src/RootFile.cc
103 
104  TTree* luminosityBlockTree = branchMap_->getLuminosityBlockTree();
105  if (fileVersion_ >= 3) {
106  auxBranch_ = luminosityBlockTree->GetBranch(edm::BranchTypeToAuxiliaryBranchName(edm::InLumi).c_str());
107  if (nullptr == auxBranch_) {
108  throw cms::Exception("NoLuminosityBlockAuxilliary")
109  << "The TTree " << edm::poolNames::luminosityBlockTreeName()
110  << " does not contain a branch named 'LuminosityBlockAuxiliary'";
111  }
112  auxBranch_->SetAddress(&pAux_);
113  } else {
114  throw cms::Exception("OldFileVersion") << "The FWLite Luminosity Block code des not support old file versions";
115  /* pOldAux_ = new edm::EventAux();
116  auxBranch_ = luminosityBlockTree->GetBranch(edm::BranchTypeToAuxBranchName(edm::InLuminosityBlock).c_str());
117  if(nullptr == auxBranch_) {
118  throw cms::Exception("NoLuminosityBlockAux")<<"The TTree "
119  <<edm::poolNames::luminosityBlockTreeName()
120  <<" does not contain a branch named 'LuminosityBlockAux'";
121  }
122  auxBranch_->SetAddress(&pOldAux_);*/
123  }
124  branchMap_->updateLuminosityBlock(0);
125 
126  // if(fileVersion_ >= 7) {
127  // eventHistoryTree_ = dynamic_cast<TTree*>(iFile->Get(edm::poolNames::eventHistoryTreeName().c_str()));
128  // }
129  }
DataGetterHelper dataHelper_
edm::LuminosityBlockAuxiliary aux_
std::string const & luminosityBlockTreeName()
Definition: BranchType.cc:225
edm::LuminosityBlockAuxiliary const * pAux_
std::shared_ptr< BranchMapReader > branchMap_
std::shared_ptr< RunFactory > runFactory_
std::string const & BranchTypeToAuxiliaryBranchName(BranchType const &branchType)
Definition: BranchType.cc:116
edm::LuminosityBlockAux const * pOldAux_

◆ LuminosityBlock() [3/3]

fwlite::LuminosityBlock::LuminosityBlock ( const LuminosityBlock )
delete

◆ ~LuminosityBlock()

LuminosityBlock::~LuminosityBlock ( )
override

Definition at line 131 of file LuminosityBlock.cc.

References label, labels_, and pOldAux_.

131  {
132  for (auto const& label : labels_) {
133  delete[] label;
134  }
135  delete pOldAux_;
136  }
std::vector< char const * > labels_
char const * label
edm::LuminosityBlockAux const * pOldAux_

Member Function Documentation

◆ atEnd()

bool LuminosityBlock::atEnd ( ) const
overridevirtual

Implements fwlite::LuminosityBlockBase.

Definition at line 176 of file LuminosityBlock.cc.

References branchMap_, or, and size().

Referenced by getByLabel().

176  {
177  Long_t luminosityBlockIndex = branchMap_->getLuminosityBlockEntry();
178  return luminosityBlockIndex == -1 or luminosityBlockIndex == size();
179  }
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e< void, edm::EventID const &, edm::Timestamp const & > We also list in braces which AR_WATCH_USING_METHOD_ is used for those or
Definition: Activities.doc:12
std::shared_ptr< BranchMapReader > branchMap_

◆ getBranchDescriptions()

std::vector<edm::BranchDescription> const& fwlite::LuminosityBlock::getBranchDescriptions ( ) const
inline

Definition at line 92 of file LuminosityBlock.h.

References branchMap_.

92  {
93  return branchMap_->getBranchDescriptions();
94  }
std::shared_ptr< BranchMapReader > branchMap_

◆ getBranchNameFor()

std::string const LuminosityBlock::getBranchNameFor ( std::type_info const &  iInfo,
char const *  iModuleLabel,
char const *  iProductInstanceLabel,
char const *  iProcessLabel 
) const
virtual

Definition at line 181 of file LuminosityBlock.cc.

References dataHelper_, and fwlite::DataGetterHelper::getBranchNameFor().

184  {
185  return dataHelper_.getBranchNameFor(iInfo, iModuleLabel, iProductInstanceLabel, iProcessLabel);
186  }
DataGetterHelper dataHelper_
std::string const getBranchNameFor(std::type_info const &, char const *, char const *, char const *) const

◆ getByLabel()

bool LuminosityBlock::getByLabel ( std::type_info const &  iInfo,
char const *  iModuleLabel,
char const *  iProductInstanceLabel,
char const *  iProcessLabel,
void *  oData 
) const
overridevirtual

Implements fwlite::LuminosityBlockBase.

Definition at line 188 of file LuminosityBlock.cc.

References atEnd(), branchMap_, dataHelper_, Exception, fwlite::DataGetterHelper::getByLabel(), and csv2json::lumiIndex.

192  {
193  if (atEnd()) {
194  throw cms::Exception("OffEnd") << "You have requested data past the last lumi";
195  }
196  Long_t lumiIndex = branchMap_->getLuminosityBlockEntry();
197  return dataHelper_.getByLabel(iInfo, iModuleLabel, iProductInstanceLabel, iProcessLabel, oData, lumiIndex);
198  }
DataGetterHelper dataHelper_
bool atEnd() const override
bool getByLabel(std::type_info const &, char const *, char const *, char const *, void *, Long_t) const
std::shared_ptr< BranchMapReader > branchMap_

◆ getByProductID()

edm::WrapperBase const * LuminosityBlock::getByProductID ( edm::ProductID const &  iID) const

Definition at line 275 of file LuminosityBlock.cc.

References branchMap_, dataHelper_, and fwlite::DataGetterHelper::getByProductID().

275  {
276  Long_t luminosityBlockIndex = branchMap_->getLuminosityBlockEntry();
277  return dataHelper_.getByProductID(iID, luminosityBlockIndex);
278  }
DataGetterHelper dataHelper_
edm::WrapperBase const * getByProductID(edm::ProductID const &pid, Long_t eventEntry) const
std::shared_ptr< BranchMapReader > branchMap_

◆ getRun()

fwlite::Run const & LuminosityBlock::getRun ( ) const

Definition at line 302 of file LuminosityBlock.cc.

References branchMap_, luminosityBlockAuxiliary(), edm::LuminosityBlockAuxiliary::run(), edm::LuminosityBlockBase::run(), run_, and runFactory_.

302  {
303  run_ = runFactory_->makeRun(std::shared_ptr<BranchMapReader>(&*branchMap_, NoDelete()));
305  run_->to(run);
306  return *run_;
307  }
std::shared_ptr< fwlite::Run > run_
std::shared_ptr< BranchMapReader > branchMap_
unsigned int RunNumber_t
std::shared_ptr< RunFactory > runFactory_
edm::LuminosityBlockAuxiliary const & luminosityBlockAuxiliary() const override

◆ history()

const edm::ProcessHistory & LuminosityBlock::history ( ) const
private

Definition at line 216 of file LuminosityBlock.cc.

References aux_, b, branchMap_, Exception, fileVersion_, historyMap_, csv2json::lumiIndex, edm::poolNames::metaDataTreeName(), edm::poolNames::processHistoryBranchName(), edm::LuminosityBlockAuxiliary::processHistoryID(), edm::poolNames::processHistoryMapBranchName(), procHistoryNames_, edm::ProcessHistory::setProcessHistoryID(), and updateAux().

Referenced by fwlite::LumiHistoryGetter::history().

216  {
217  edm::ProcessHistoryID processHistoryID;
218 
219  bool newFormat = false; //(fileVersion_ >= 5);
220 
221  Long_t lumiIndex = branchMap_->getLuminosityBlockEntry();
223  if (!newFormat) {
224  processHistoryID = aux_.processHistoryID();
225  }
226 
227  if (historyMap_.empty() || newFormat) {
228  procHistoryNames_.clear();
229  TTree* meta = dynamic_cast<TTree*>(branchMap_->getFile()->Get(edm::poolNames::metaDataTreeName().c_str()));
230  if (nullptr == meta) {
231  throw cms::Exception("NoMetaTree")
232  << "The TFile does not appear to contain a TTree named " << edm::poolNames::metaDataTreeName();
233  }
234  if (historyMap_.empty()) {
235  if (fileVersion_ < 11) {
237  TBranch* b = meta->GetBranch(edm::poolNames::processHistoryMapBranchName().c_str());
238  b->SetAddress(&pPhm);
239  b->GetEntry(0);
240  } else {
241  edm::ProcessHistoryVector historyVector;
242  edm::ProcessHistoryVector* pPhv = &historyVector;
243  TBranch* b = meta->GetBranch(edm::poolNames::processHistoryBranchName().c_str());
244  b->SetAddress(&pPhv);
245  b->GetEntry(0);
246  for (auto& history : historyVector) {
247  historyMap_.insert(std::make_pair(history.setProcessHistoryID(), history));
248  }
249  }
250  }
251  // if (newFormat) {
252  // if (fileVersion_ >= 7) {
253  // edm::History history;
254  // edm::History* pHistory = &history;
255  // TBranch* eventHistoryBranch = eventHistoryTree_->GetBranch(edm::poolNames::eventHistoryBranchName().c_str());
256  // if (!eventHistoryBranch)
257  // throw edm::Exception(edm::errors::FatalRootError)
258  // << "Failed to find history branch in event history tree";
259  // eventHistoryBranch->SetAddress(&pHistory);
260  // eventHistoryTree_->GetEntry(lumiIndex);
261  // processHistoryID = history.processHistoryID();
262  // } else {
263  // std::vector<edm::EventProcessHistoryID> *pEventProcessHistoryIDs = &eventProcessHistoryIDs_;
264  // TBranch* b = meta->GetBranch(edm::poolNames::eventHistoryBranchName().c_str());
265  // b->SetAddress(&pEventProcessHistoryIDs);
266  // b->GetEntry(0);
267  // edm::EventProcessHistoryID target(aux_.id(), edm::ProcessHistoryID());
268  // processHistoryID = std::lower_bound(eventProcessHistoryIDs_.begin(), eventProcessHistoryIDs_.end(), target)->processHistoryID_;
269  // }
270  // }
271  }
272  return historyMap_[processHistoryID];
273  }
std::vector< ProcessHistory > ProcessHistoryVector
std::string const & metaDataTreeName()
Definition: BranchType.cc:159
void updateAux(Long_t lumiIndex) const
edm::LuminosityBlockAuxiliary aux_
ProcessHistoryID const & processHistoryID() const
std::string const & processHistoryBranchName()
Definition: BranchType.cc:177
ProcessHistoryID setProcessHistoryID()
std::string const & processHistoryMapBranchName()
Definition: BranchType.cc:174
std::vector< std::string > procHistoryNames_
const edm::ProcessHistory & history() const
double b
Definition: hdecay.h:120
edm::ProcessHistoryMap historyMap_
std::shared_ptr< BranchMapReader > branchMap_
std::map< ProcessHistoryID, ProcessHistory > ProcessHistoryMap

◆ isValid()

bool LuminosityBlock::isValid ( void  ) const

Definition at line 169 of file LuminosityBlock.cc.

References branchMap_, and size().

Referenced by ntupleDataFormat._Object::_checkIsValid(), and core.AutoHandle.AutoHandle::ReallyLoad().

169  {
170  Long_t luminosityBlockIndex = branchMap_->getLuminosityBlockEntry();
171  return luminosityBlockIndex != -1 and luminosityBlockIndex < size();
172  }
std::shared_ptr< BranchMapReader > branchMap_

◆ luminosityBlockAuxiliary()

edm::LuminosityBlockAuxiliary const & LuminosityBlock::luminosityBlockAuxiliary ( ) const
overridevirtual

Implements edm::LuminosityBlockBase.

Definition at line 200 of file LuminosityBlock.cc.

References aux_, branchMap_, and updateAux().

Referenced by getRun().

200  {
201  Long_t luminosityBlockIndex = branchMap_->getLuminosityBlockEntry();
202  updateAux(luminosityBlockIndex);
203  return aux_;
204  }
void updateAux(Long_t lumiIndex) const
edm::LuminosityBlockAuxiliary aux_
std::shared_ptr< BranchMapReader > branchMap_

◆ operator bool()

LuminosityBlock::operator bool ( ) const

Definition at line 174 of file LuminosityBlock.cc.

References sistrip::SpyUtilities::isValid().

174 { return isValid(); }

◆ operator++()

const LuminosityBlock & LuminosityBlock::operator++ ( )
overridevirtual

Implements fwlite::LuminosityBlockBase.

Definition at line 142 of file LuminosityBlock.cc.

References branchMap_, and size().

142  {
143  Long_t luminosityBlockIndex = branchMap_->getLuminosityBlockEntry();
144  if (luminosityBlockIndex < size()) {
145  branchMap_->updateLuminosityBlock(++luminosityBlockIndex);
146  }
147  return *this;
148  }
std::shared_ptr< BranchMapReader > branchMap_

◆ operator=()

const LuminosityBlock& fwlite::LuminosityBlock::operator= ( const LuminosityBlock )
delete

◆ size()

Long64_t LuminosityBlock::size ( void  ) const

Definition at line 167 of file LuminosityBlock.cc.

References branchMap_.

Referenced by ntupleDataFormat._Collection::__iter__(), ntupleDataFormat._Collection::__len__(), atEnd(), isValid(), and operator++().

167 { return branchMap_->getLuminosityBlockTree()->GetEntries(); }
std::shared_ptr< BranchMapReader > branchMap_

◆ throwProductNotFoundException()

void LuminosityBlock::throwProductNotFoundException ( std::type_info const &  iType,
char const *  iModule,
char const *  iProduct,
char const *  iProcess 
)
static

Definition at line 283 of file LuminosityBlock.cc.

References Exception, and edm::errors::ProductNotFound.

286  {
287  edm::TypeID type(iType);
289  << "A branch was found for \n type ='" << type.className() << "'\n module='" << iModule
290  << "'\n productInstance='" << ((nullptr != iProduct) ? iProduct : "") << "'\n process='"
291  << ((nullptr != iProcess) ? iProcess : "")
292  << "'\n"
293  "but no data is available for this LuminosityBlock";
294  }

◆ to()

bool LuminosityBlock::to ( edm::RunNumber_t  run,
edm::LuminosityBlockNumber_t  lumi 
)

Go to event by Run & LuminosityBlock number.

Definition at line 150 of file LuminosityBlock.cc.

References branchMap_, mps_splice::entry, entryFinder_, fwlite::EntryFinder::fillIndex(), fwlite::EntryFinder::findLumi(), fwlite::EntryFinder::invalidEntry, edm::LuminosityBlockBase::luminosityBlock(), and edm::LuminosityBlockBase::run().

150  {
154  return false;
155  }
156  return branchMap_->updateLuminosityBlock(entry);
157  }
edm::IndexIntoFile::EntryNumber_t EntryNumber_t
Definition: EntryFinder.h:33
void fillIndex(BranchMapReader &branchMap)
Definition: EntryFinder.cc:107
static EntryNumber_t const invalidEntry
Definition: EntryFinder.h:41
EntryNumber_t findLumi(edm::RunNumber_t const &run, edm::LuminosityBlockNumber_t const &lumi) const
Definition: EntryFinder.cc:74
std::shared_ptr< BranchMapReader > branchMap_
LuminosityBlockNumber_t luminosityBlock() const

◆ toBegin()

const LuminosityBlock & LuminosityBlock::toBegin ( )
overridevirtual

Implements fwlite::LuminosityBlockBase.

Definition at line 159 of file LuminosityBlock.cc.

References branchMap_.

159  {
160  branchMap_->updateLuminosityBlock(0);
161  return *this;
162  }
std::shared_ptr< BranchMapReader > branchMap_

◆ updateAux()

void LuminosityBlock::updateAux ( Long_t  lumiIndex) const
private

Definition at line 206 of file LuminosityBlock.cc.

References aux_, auxBranch_, edm::conversion(), and pOldAux_.

Referenced by history(), and luminosityBlockAuxiliary().

206  {
207  if (auxBranch_->GetEntryNumber() != luminosityBlockIndex) {
208  auxBranch_->GetEntry(luminosityBlockIndex);
209  //handling dealing with old version
210  if (nullptr != pOldAux_) {
212  }
213  }
214  }
edm::LuminosityBlockAuxiliary aux_
void conversion(EventAux const &from, EventAuxiliary &to)
Definition: EventAux.cc:9
edm::LuminosityBlockAux const * pOldAux_

Friends And Related Function Documentation

◆ internal::ProductGetter

friend class internal::ProductGetter
friend

Definition at line 107 of file LuminosityBlock.h.

◆ LumiHistoryGetter

friend class LumiHistoryGetter
friend

Definition at line 108 of file LuminosityBlock.h.

Member Data Documentation

◆ aux_

edm::LuminosityBlockAuxiliary fwlite::LuminosityBlock::aux_
mutableprivate

Definition at line 123 of file LuminosityBlock.h.

Referenced by history(), luminosityBlockAuxiliary(), and updateAux().

◆ auxBranch_

TBranch* fwlite::LuminosityBlock::auxBranch_
private

Definition at line 127 of file LuminosityBlock.h.

Referenced by LuminosityBlock(), and updateAux().

◆ branchMap_

std::shared_ptr<BranchMapReader> fwlite::LuminosityBlock::branchMap_
mutableprivate

◆ dataHelper_

DataGetterHelper fwlite::LuminosityBlock::dataHelper_
private

Definition at line 130 of file LuminosityBlock.h.

Referenced by getBranchNameFor(), getByLabel(), and getByProductID().

◆ entryFinder_

EntryFinder fwlite::LuminosityBlock::entryFinder_
mutableprivate

Definition at line 124 of file LuminosityBlock.h.

Referenced by to().

◆ fileVersion_

int fwlite::LuminosityBlock::fileVersion_
private

Definition at line 128 of file LuminosityBlock.h.

Referenced by history(), and LuminosityBlock().

◆ historyMap_

edm::ProcessHistoryMap fwlite::LuminosityBlock::historyMap_
mutableprivate

Definition at line 121 of file LuminosityBlock.h.

Referenced by history().

◆ labels_

std::vector<char const*> fwlite::LuminosityBlock::labels_
mutableprivate

Definition at line 120 of file LuminosityBlock.h.

Referenced by ~LuminosityBlock().

◆ pAux_

edm::LuminosityBlockAuxiliary const* fwlite::LuminosityBlock::pAux_
private

Definition at line 125 of file LuminosityBlock.h.

Referenced by LuminosityBlock().

◆ pOldAux_

edm::LuminosityBlockAux const* fwlite::LuminosityBlock::pOldAux_
private

Definition at line 126 of file LuminosityBlock.h.

Referenced by updateAux(), and ~LuminosityBlock().

◆ procHistoryNames_

std::vector<std::string> fwlite::LuminosityBlock::procHistoryNames_
mutableprivate

Definition at line 122 of file LuminosityBlock.h.

Referenced by history().

◆ run_

std::shared_ptr<fwlite::Run> fwlite::LuminosityBlock::run_
mutableprivate

Definition at line 117 of file LuminosityBlock.h.

Referenced by getRun().

◆ runFactory_

std::shared_ptr<RunFactory> fwlite::LuminosityBlock::runFactory_
mutableprivate

Definition at line 131 of file LuminosityBlock.h.

Referenced by getRun(), and LuminosityBlock().