CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
DataModeScoutingRun3 Class Reference

#include <DAQSourceModelsScoutingRun3.h>

Inheritance diagram for DataModeScoutingRun3:
DataMode

Public Member Functions

bool checksumValid () override
 
bool dataBlockCompleted () const override
 
bool dataBlockInitialized () const override
 
uint64_t dataBlockSize () const override
 
 DataModeScoutingRun3 (DAQSource *daqSource)
 
int dataVersion () const override
 
std::pair< bool, std::vector< std::string > > defineAdditionalFiles (std::string const &primaryName, bool fileListMode) const override
 
void detectVersion (unsigned char *fileBuf, uint32_t fileHeaderOffset) override
 
void fillSDSRawDataCollection (SDSRawDataCollection &rawData, char *buff, size_t len)
 
bool fitToBuffer () const override
 
std::string getChecksumError () const override
 
uint32_t headerSize () const override
 
bool isRealData () const override
 
std::vector< std::shared_ptr< const edm::DaqProvenanceHelper > > & makeDaqProvenanceHelpers () override
 
void makeDataBlockView (unsigned char *addr, size_t maxSize, std::vector< uint64_t > const &fileSizes, size_t fileHeaderSize) override
 
void makeDirectoryEntries (std::vector< std::string > const &baseDirs, std::vector< int > const &numSources, std::string const &runDir) override
 
bool nextEventView () override
 
void readEvent (edm::EventPrincipal &eventPrincipal) override
 
bool requireHeader () const override
 
uint32_t run () const override
 
void setDataBlockInitialized (bool val) override
 
void setTCDSSearchRange (uint16_t MINTCDSuTCAFEDID, uint16_t MAXTCDSuTCAFEDID) override
 
bool versionCheck () const override
 
 ~DataModeScoutingRun3 () override
 
- Public Member Functions inherited from DataMode
 DataMode (DAQSource *daqSource)
 
virtual bool isMultiDir ()
 
void setTesting (bool testing)
 
virtual ~DataMode ()=default
 

Private Member Functions

bool makeEvents ()
 

Private Attributes

bool blockCompleted_ = true
 
std::vector< int > buNumSources_
 
std::vector< std::filesystem::path > buPaths_
 
std::vector< bool > completedBlocks_
 
unsigned int currOrbit_ = 0xFFFFFFFF
 
std::vector< std::shared_ptr< const edm::DaqProvenanceHelper > > daqProvenanceHelpers_
 
unsigned char * dataBlockAddr_ = nullptr
 
std::vector< unsigned char * > dataBlockAddrs_
 
bool dataBlockInitialized_ = false
 
size_t dataBlockMax_ = 0
 
std::vector< unsigned char * > dataBlockMaxAddrs_
 
uint16_t detectedFRDversion_ = 0
 
bool eventCached_ = false
 
std::vector< std::unique_ptr< FRDEventMsgView > > events_
 
size_t fileHeaderSize_ = 0
 
size_t headerSize_ = 0
 
short numFiles_ = 0
 
std::vector< std::pair< int, int > > sourceValidOrbitPair_
 

Additional Inherited Members

- Protected Attributes inherited from DataMode
DAQSourcedaqSource_
 
bool testing_ = false
 

Detailed Description

Definition at line 20 of file DAQSourceModelsScoutingRun3.h.

Constructor & Destructor Documentation

◆ DataModeScoutingRun3()

DataModeScoutingRun3::DataModeScoutingRun3 ( DAQSource daqSource)
inline

Definition at line 22 of file DAQSourceModelsScoutingRun3.h.

22 : DataMode(daqSource) {}
DataMode(DAQSource *daqSource)

◆ ~DataModeScoutingRun3()

DataModeScoutingRun3::~DataModeScoutingRun3 ( )
inlineoverride

Definition at line 23 of file DAQSourceModelsScoutingRun3.h.

23 {};

Member Function Documentation

◆ checksumValid()

bool DataModeScoutingRun3::checksumValid ( )
overridevirtual

Implements DataMode.

Definition at line 182 of file DAQSourceModelsScoutingRun3.cc.

182 { return true; }

◆ dataBlockCompleted()

bool DataModeScoutingRun3::dataBlockCompleted ( ) const
inlineoverridevirtual

Implements DataMode.

Definition at line 91 of file DAQSourceModelsScoutingRun3.h.

References blockCompleted_.

◆ dataBlockInitialized()

bool DataModeScoutingRun3::dataBlockInitialized ( ) const
inlineoverridevirtual

Implements DataMode.

Definition at line 97 of file DAQSourceModelsScoutingRun3.h.

References dataBlockInitialized_.

◆ dataBlockSize()

uint64_t DataModeScoutingRun3::dataBlockSize ( ) const
inlineoverridevirtual

Implements DataMode.

Definition at line 37 of file DAQSourceModelsScoutingRun3.h.

References events_.

37  {
38  // get event size from the first data source (main)
39  return events_[0]->size();
40  }
std::vector< std::unique_ptr< FRDEventMsgView > > events_

◆ dataVersion()

int DataModeScoutingRun3::dataVersion ( ) const
inlineoverridevirtual

Implements DataMode.

Definition at line 30 of file DAQSourceModelsScoutingRun3.h.

References detectedFRDversion_.

◆ defineAdditionalFiles()

std::pair< bool, std::vector< std::string > > DataModeScoutingRun3::defineAdditionalFiles ( std::string const &  primaryName,
bool  fileListMode 
) const
overridevirtual

Implements DataMode.

Definition at line 16 of file DAQSourceModelsScoutingRun3.cc.

References buNumSources_, buPaths_, SiStripCommissioningSource_FromRAW_cfg::fileListMode, reco_skim_cfg_mod::fullpath, mps_fire::i, dqmiolumiharvest::j, castor_dqm_sourceclient_file_cfg::path, and to_string().

17  {
18  std::vector<std::string> additionalFiles;
19 
20  if (fileListMode) {
21  // Expected file naming when working in file list mode
22  for (int j = 1; j < buNumSources_[0]; j++) {
23  additionalFiles.push_back(primaryName + "_" + std::to_string(j));
24  }
25  return std::make_pair(true, additionalFiles);
26  }
27 
28  auto fullpath = std::filesystem::path(primaryName);
29  auto fullname = fullpath.filename();
30 
31  for (size_t i = 0; i < buPaths_.size(); i++) {
32  std::filesystem::path newPath = buPaths_[i] / fullname;
33 
34  if (i != 0) {
35  // secondary files from other ramdisks
36  additionalFiles.push_back(newPath.generic_string());
37  }
38 
39  // add extra sources from the same ramdisk
40  for (int j = 1; j < buNumSources_[i]; j++) {
41  additionalFiles.push_back(newPath.generic_string() + "_" + std::to_string(j));
42  }
43  }
44  return std::make_pair(true, additionalFiles);
45 }
std::vector< std::filesystem::path > buPaths_
static std::string to_string(const XMLCh *ch)

◆ detectVersion()

void DataModeScoutingRun3::detectVersion ( unsigned char *  fileBuf,
uint32_t  fileHeaderOffset 
)
inlineoverridevirtual

Implements DataMode.

Definition at line 31 of file DAQSourceModelsScoutingRun3.h.

References detectedFRDversion_.

31  {
32  detectedFRDversion_ = *((uint16_t*)(fileBuf + fileHeaderOffset));
33  }

◆ fillSDSRawDataCollection()

void DataModeScoutingRun3::fillSDSRawDataCollection ( SDSRawDataCollection rawData,
char *  buff,
size_t  len 
)

Definition at line 81 of file DAQSourceModelsScoutingRun3.cc.

References FEDRawData::data(), l1tstage2_dqm_sourceclient-live_cfg::rawData, FEDRawData::resize(), and objects.autophobj::sourceId.

Referenced by readEvent().

81  {
82  size_t pos = 0;
83 
84  // get the source ID
85  int sourceId = *((uint32_t*)(buff + pos));
86  pos += 4;
87 
88  // size of the orbit paylod
89  size_t orbitSize = len - pos;
90 
91  // set the size (=orbit size) in the SRDColletion of the current source.
92  // FRD size is expecting 8 bytes words, while scouting is using 4 bytes
93  // words. This could be different for some future sources.
94  FEDRawData& fedData = rawData.FEDData(sourceId);
95  fedData.resize(orbitSize, 4);
96 
97  memcpy(fedData.data(), buff + pos, orbitSize);
98 
99  return;
100 }
void resize(size_t newsize, size_t wordsize=8)
Definition: FEDRawData.cc:28
const unsigned char * data() const
Return a const pointer to the beginning of the data buffer.
Definition: FEDRawData.cc:24

◆ fitToBuffer()

bool DataModeScoutingRun3::fitToBuffer ( ) const
inlineoverridevirtual

Implements DataMode.

Definition at line 95 of file DAQSourceModelsScoutingRun3.h.

95 { return true; }

◆ getChecksumError()

std::string DataModeScoutingRun3::getChecksumError ( ) const
overridevirtual

◆ headerSize()

uint32_t DataModeScoutingRun3::headerSize ( ) const
inlineoverridevirtual

Implements DataMode.

Definition at line 34 of file DAQSourceModelsScoutingRun3.h.

References detectedFRDversion_, and FRDHeaderVersionSize.

constexpr std::array< uint32, FRDHeaderMaxVersion+1 > FRDHeaderVersionSize

◆ isRealData()

bool DataModeScoutingRun3::isRealData ( ) const
inlineoverridevirtual

Implements DataMode.

Definition at line 81 of file DAQSourceModelsScoutingRun3.h.

References cms::cuda::assert(), and events_.

81  {
82  assert(!events_.empty());
83  return events_[0]->isRealData();
84  }
std::vector< std::unique_ptr< FRDEventMsgView > > events_
assert(be >=bs)

◆ makeDaqProvenanceHelpers()

std::vector< std::shared_ptr< const edm::DaqProvenanceHelper > > & DataModeScoutingRun3::makeDaqProvenanceHelpers ( )
overridevirtual

Implements DataMode.

Definition at line 102 of file DAQSourceModelsScoutingRun3.cc.

References daqProvenanceHelpers_.

102  {
103  //set SRD data collection
104  daqProvenanceHelpers_.clear();
105  daqProvenanceHelpers_.emplace_back(std::make_shared<const edm::DaqProvenanceHelper>(
106  edm::TypeID(typeid(SDSRawDataCollection)), "SDSRawDataCollection", "SDSRawDataCollection", "DAQSource"));
107  return daqProvenanceHelpers_;
108 }
std::vector< std::shared_ptr< const edm::DaqProvenanceHelper > > daqProvenanceHelpers_

◆ makeDataBlockView()

void DataModeScoutingRun3::makeDataBlockView ( unsigned char *  addr,
size_t  maxSize,
std::vector< uint64_t > const &  fileSizes,
size_t  fileHeaderSize 
)
inlineoverridevirtual

Implements DataMode.

Definition at line 42 of file DAQSourceModelsScoutingRun3.h.

References generateTowerEtThresholdLUT::addr, cms::cuda::assert(), blockCompleted_, completedBlocks_, dataBlockAddrs_, dataBlockMax_, dataBlockMaxAddrs_, eventCached_, fileHeaderSize_, mps_fire::i, makeEvents(), reco_skim_cfg_mod::maxSize, numFiles_, mps_fire::result, setDataBlockInitialized(), and sourceValidOrbitPair_.

45  {
46  fileHeaderSize_ = fileHeaderSize;
47  numFiles_ = fileSizes.size();
48 
49  // initalize vectors keeping tracks of valid orbits and completed blocks
50  sourceValidOrbitPair_.clear();
51  completedBlocks_.clear();
52  for (unsigned int i = 0; i < fileSizes.size(); i++) {
53  completedBlocks_.push_back(false);
54  }
55 
56  //add offset address for each file payload
57  dataBlockAddrs_.clear();
58  dataBlockAddrs_.push_back(addr);
59  dataBlockMaxAddrs_.clear();
60  dataBlockMaxAddrs_.push_back(addr + fileSizes[0] - fileHeaderSize);
61  auto fileAddr = addr;
62  for (unsigned int i = 1; i < fileSizes.size(); i++) {
63  fileAddr += fileSizes[i - 1];
64  dataBlockAddrs_.push_back(fileAddr);
65  dataBlockMaxAddrs_.push_back(fileAddr + fileSizes[i] - fileHeaderSize);
66  }
67 
69  blockCompleted_ = false;
70  //set event cached as we set initial address here
71  bool result = makeEvents();
72  assert(result);
73  eventCached_ = true;
75  }
std::vector< std::pair< int, int > > sourceValidOrbitPair_
std::vector< bool > completedBlocks_
std::vector< unsigned char * > dataBlockAddrs_
assert(be >=bs)
std::vector< unsigned char * > dataBlockMaxAddrs_
void setDataBlockInitialized(bool val) override

◆ makeDirectoryEntries()

void DataModeScoutingRun3::makeDirectoryEntries ( std::vector< std::string > const &  baseDirs,
std::vector< int > const &  numSources,
std::string const &  runDir 
)
overridevirtual

Implements DataMode.

Definition at line 3 of file DAQSourceModelsScoutingRun3.cc.

References ALCARECODTCalibSynchDQM_cff::baseDir, buNumSources_, buPaths_, and castor_dqm_sourceclient_file_cfg::path.

5  {
6  std::filesystem::path runDirP(runDir);
7  for (auto& baseDir : baseDirs) {
9  buPaths_.emplace_back(baseDirP / runDirP);
10  }
11 
12  // store the number of sources in each BU
13  buNumSources_ = numSources;
14 }
std::vector< std::filesystem::path > buPaths_

◆ makeEvents()

bool DataModeScoutingRun3::makeEvents ( )
private

Definition at line 124 of file DAQSourceModelsScoutingRun3.cc.

References cms::cuda::assert(), blockCompleted_, completedBlocks_, currOrbit_, dataBlockAddrs_, dataBlockMaxAddrs_, edmPickEvents::event, events_, mps_fire::i, numFiles_, and sourceValidOrbitPair_.

Referenced by makeDataBlockView(), and nextEventView().

124  {
125  // clear events and reset current orbit
126  events_.clear();
127  sourceValidOrbitPair_.clear();
128  currOrbit_ = 0xFFFFFFFF; // max uint
130 
131  // create current "events" (= orbits) list from each data source,
132  // check if one dataBlock terminated earlier than others.
133  for (int i = 0; i < numFiles_; i++) {
135  completedBlocks_[i] = true;
136  continue;
137  }
138 
139  // event contains data, add it to the events list
140  events_.emplace_back(std::make_unique<FRDEventMsgView>(dataBlockAddrs_[i]));
141  if (dataBlockAddrs_[i] + events_.back()->size() > dataBlockMaxAddrs_[i])
142  throw cms::Exception("DAQSource::getNextEvent")
143  << " event id:" << events_.back()->event() << " lumi:" << events_.back()->lumi()
144  << " run:" << events_.back()->run() << " of size:" << events_.back()->size()
145  << " bytes does not fit into the buffer or has corrupted header";
146 
147  // find the minimum orbit for the current event between all files
148  if ((events_.back()->event() < currOrbit_) && (!completedBlocks_[i])) {
149  currOrbit_ = events_.back()->event();
150  }
151  }
152 
153  // mark valid orbits from each data source
154  // e.g. find when orbit is missing from one source
155  bool allBlocksCompleted = true;
156  int evt_idx = 0;
157  for (int i = 0; i < numFiles_; i++) {
158  if (completedBlocks_[i]) {
159  continue;
160  }
161 
162  if (events_[evt_idx]->event() != currOrbit_) {
163  // current source (=i-th source) doesn't contain the expected orbit.
164  // skip it, and move to the next orbit
165  } else {
166  // add a pair <current surce index, event index>
167  // evt_idx can be different from variable i, as some data blocks can be
168  // completed before others
169  sourceValidOrbitPair_.emplace_back(std::make_pair(i, evt_idx));
170  allBlocksCompleted = false;
171  }
172 
173  evt_idx++;
174  }
175 
176  if (allBlocksCompleted) {
177  blockCompleted_ = true;
178  }
179  return !allBlocksCompleted;
180 }
std::vector< std::pair< int, int > > sourceValidOrbitPair_
std::vector< bool > completedBlocks_
std::vector< std::unique_ptr< FRDEventMsgView > > events_
std::vector< unsigned char * > dataBlockAddrs_
assert(be >=bs)
std::vector< unsigned char * > dataBlockMaxAddrs_

◆ nextEventView()

bool DataModeScoutingRun3::nextEventView ( )
overridevirtual

Implements DataMode.

Definition at line 110 of file DAQSourceModelsScoutingRun3.cc.

References blockCompleted_, dataBlockAddrs_, eventCached_, events_, makeEvents(), and sourceValidOrbitPair_.

110  {
111  blockCompleted_ = false;
112  if (eventCached_)
113  return true;
114 
115  // move the data block address only for the sources processed
116  // un the previous event by adding the last event size
117  for (const auto& pair : sourceValidOrbitPair_) {
118  dataBlockAddrs_[pair.first] += events_[pair.second]->size();
119  }
120 
121  return makeEvents();
122 }
std::vector< std::pair< int, int > > sourceValidOrbitPair_
std::vector< std::unique_ptr< FRDEventMsgView > > events_
std::vector< unsigned char * > dataBlockAddrs_

◆ readEvent()

void DataModeScoutingRun3::readEvent ( edm::EventPrincipal eventPrincipal)
overridevirtual

Implements DataMode.

Definition at line 47 of file DAQSourceModelsScoutingRun3.cc.

References cms::cuda::assert(), printConversionInfo::aux, DAQSource::currentLumiSection(), currOrbit_, daqProvenanceHelpers_, DataMode::daqSource_, eventCached_, DAQSource::eventRunNumber(), events_, fillSDSRawDataCollection(), DAQSource::makeEventWrapper(), eostools::move(), edm::EventAuxiliary::PhysicsTrigger, edm::InputSource::processGUID(), DAQSource::processHistoryID(), edm::EventPrincipal::put(), l1tstage2_dqm_sourceclient-live_cfg::rawData, sourceValidOrbitPair_, and hcalRecHitTable_cff::time.

47  {
48  assert(!events_.empty());
49 
51  timeval stv;
52  gettimeofday(&stv, nullptr);
53  time = stv.tv_sec;
54  time = (time << 32) + stv.tv_usec;
55  edm::Timestamp tstamp(time);
56 
57  // set provenance helpers
58  uint32_t hdrEventID = currOrbit_;
61  eventID, daqSource_->processGUID(), tstamp, events_[0]->isRealData(), edm::EventAuxiliary::PhysicsTrigger);
62 
63  aux.setProcessHistoryID(daqSource_->processHistoryID());
64  daqSource_->makeEventWrapper(eventPrincipal, aux);
65 
66  // create scouting raw data collection
67  std::unique_ptr<SDSRawDataCollection> rawData(new SDSRawDataCollection);
68 
69  // Fill the ScoutingRawDataCollection with valid orbit data from the multiple sources
70  for (const auto& pair : sourceValidOrbitPair_) {
71  fillSDSRawDataCollection(*rawData, (char*)events_[pair.second]->payload(), events_[pair.second]->eventSize());
72  }
73 
74  std::unique_ptr<edm::WrapperBase> edp(new edm::Wrapper<SDSRawDataCollection>(std::move(rawData)));
75  eventPrincipal.put(
76  daqProvenanceHelpers_[0]->branchDescription(), std::move(edp), daqProvenanceHelpers_[0]->dummyProvenance());
77 
78  eventCached_ = false;
79 }
std::vector< std::pair< int, int > > sourceValidOrbitPair_
void fillSDSRawDataCollection(SDSRawDataCollection &rawData, char *buff, size_t len)
std::vector< std::unique_ptr< FRDEventMsgView > > events_
assert(be >=bs)
int currentLumiSection() const
Definition: DAQSource.h:52
void put(BranchDescription const &bd, std::unique_ptr< WrapperBase > edp, ProductProvenance const &productProvenance) const
std::string const & processGUID() const
Accessor for global process identifier.
Definition: InputSource.h:226
void makeEventWrapper(edm::EventPrincipal &eventPrincipal, edm::EventAuxiliary &aux)
Definition: DAQSource.h:54
edm::ProcessHistoryID & processHistoryID()
Definition: DAQSource.h:59
unsigned long long TimeValue_t
Definition: Timestamp.h:21
DAQSource * daqSource_
int eventRunNumber() const
Definition: DAQSource.h:53
std::vector< std::shared_ptr< const edm::DaqProvenanceHelper > > daqProvenanceHelpers_
def move(src, dest)
Definition: eostools.py:511

◆ requireHeader()

bool DataModeScoutingRun3::requireHeader ( ) const
inlineoverridevirtual

Implements DataMode.

Definition at line 93 of file DAQSourceModelsScoutingRun3.h.

93 { return true; }

◆ run()

uint32_t DataModeScoutingRun3::run ( ) const
inlineoverridevirtual

Implements DataMode.

Definition at line 86 of file DAQSourceModelsScoutingRun3.h.

References cms::cuda::assert(), and events_.

Referenced by Types.EventID::cppID(), and Types.LuminosityBlockID::cppID().

86  {
87  assert(!events_.empty());
88  return events_[0]->run();
89  }
std::vector< std::unique_ptr< FRDEventMsgView > > events_
assert(be >=bs)

◆ setDataBlockInitialized()

void DataModeScoutingRun3::setDataBlockInitialized ( bool  val)
inlineoverridevirtual

◆ setTCDSSearchRange()

void DataModeScoutingRun3::setTCDSSearchRange ( uint16_t  MINTCDSuTCAFEDID,
uint16_t  MAXTCDSuTCAFEDID 
)
inlineoverridevirtual

Implements DataMode.

Definition at line 101 of file DAQSourceModelsScoutingRun3.h.

101 { return; }

◆ versionCheck()

bool DataModeScoutingRun3::versionCheck ( ) const
inlineoverridevirtual

Implements DataMode.

Definition at line 35 of file DAQSourceModelsScoutingRun3.h.

References detectedFRDversion_, and FRDHeaderMaxVersion.

constexpr size_t FRDHeaderMaxVersion

Member Data Documentation

◆ blockCompleted_

bool DataModeScoutingRun3::blockCompleted_ = true
private

◆ buNumSources_

std::vector<int> DataModeScoutingRun3::buNumSources_
private

Definition at line 126 of file DAQSourceModelsScoutingRun3.h.

Referenced by defineAdditionalFiles(), and makeDirectoryEntries().

◆ buPaths_

std::vector<std::filesystem::path> DataModeScoutingRun3::buPaths_
private

Definition at line 125 of file DAQSourceModelsScoutingRun3.h.

Referenced by defineAdditionalFiles(), and makeDirectoryEntries().

◆ completedBlocks_

std::vector<bool> DataModeScoutingRun3::completedBlocks_
private

Definition at line 132 of file DAQSourceModelsScoutingRun3.h.

Referenced by makeDataBlockView(), and makeEvents().

◆ currOrbit_

unsigned int DataModeScoutingRun3::currOrbit_ = 0xFFFFFFFF
private

Definition at line 130 of file DAQSourceModelsScoutingRun3.h.

Referenced by makeEvents(), and readEvent().

◆ daqProvenanceHelpers_

std::vector<std::shared_ptr<const edm::DaqProvenanceHelper> > DataModeScoutingRun3::daqProvenanceHelpers_
private

Definition at line 112 of file DAQSourceModelsScoutingRun3.h.

Referenced by makeDaqProvenanceHelpers(), and readEvent().

◆ dataBlockAddr_

unsigned char* DataModeScoutingRun3::dataBlockAddr_ = nullptr
private

Definition at line 117 of file DAQSourceModelsScoutingRun3.h.

◆ dataBlockAddrs_

std::vector<unsigned char*> DataModeScoutingRun3::dataBlockAddrs_
private

Definition at line 118 of file DAQSourceModelsScoutingRun3.h.

Referenced by makeDataBlockView(), makeEvents(), and nextEventView().

◆ dataBlockInitialized_

bool DataModeScoutingRun3::dataBlockInitialized_ = false
private

Definition at line 122 of file DAQSourceModelsScoutingRun3.h.

Referenced by dataBlockInitialized(), and setDataBlockInitialized().

◆ dataBlockMax_

size_t DataModeScoutingRun3::dataBlockMax_ = 0
private

Definition at line 120 of file DAQSourceModelsScoutingRun3.h.

Referenced by makeDataBlockView().

◆ dataBlockMaxAddrs_

std::vector<unsigned char*> DataModeScoutingRun3::dataBlockMaxAddrs_
private

Definition at line 119 of file DAQSourceModelsScoutingRun3.h.

Referenced by makeDataBlockView(), and makeEvents().

◆ detectedFRDversion_

uint16_t DataModeScoutingRun3::detectedFRDversion_ = 0
private

◆ eventCached_

bool DataModeScoutingRun3::eventCached_ = false
private

Definition at line 124 of file DAQSourceModelsScoutingRun3.h.

Referenced by makeDataBlockView(), nextEventView(), and readEvent().

◆ events_

std::vector<std::unique_ptr<FRDEventMsgView> > DataModeScoutingRun3::events_
private

◆ fileHeaderSize_

size_t DataModeScoutingRun3::fileHeaderSize_ = 0
private

Definition at line 114 of file DAQSourceModelsScoutingRun3.h.

Referenced by makeDataBlockView().

◆ headerSize_

size_t DataModeScoutingRun3::headerSize_ = 0
private

Definition at line 115 of file DAQSourceModelsScoutingRun3.h.

◆ numFiles_

short DataModeScoutingRun3::numFiles_ = 0
private

Definition at line 121 of file DAQSourceModelsScoutingRun3.h.

Referenced by makeDataBlockView(), and makeEvents().

◆ sourceValidOrbitPair_

std::vector<std::pair<int, int> > DataModeScoutingRun3::sourceValidOrbitPair_
private