#include <LmfSource.h>
Classes | |
struct | IndexRecord |
Public Member Functions | |
LmfSource (const edm::ParameterSet &pset, const edm::InputSourceDescription &isd) | |
virtual | ~LmfSource () |
Private Member Functions | |
void | checkFileNames () |
bool | filter () const |
bool | nextEventWithinFile () |
bool | openFile (int iFile) |
virtual bool | produce (edm::Event &e) |
bool | readEvent (bool doSkip=false) |
bool | readEventWithinFile (bool doSkip) |
bool | readFileHeader () |
void | readIndexTable () |
virtual void | setRunAndEventInfo () |
std::string | toString (edm::TimeValue_t &t) const |
Private Attributes | |
uint32_t | bx_ |
int | calibTrig_ |
std::string | currentFileName_ |
unsigned char | dataFormatVers_ |
FEDRawData | emptyFedBlock_ |
uint32_t | eventNum_ |
FEDRawDataCollection | fedColl_ |
int | fedId_ |
std::vector< uint32_t > | fileHeader_ |
std::ifstream | fileList_ |
std::string | fileListName_ |
std::vector< std::string > | fileNames_ |
std::vector< uint32_t > | header_ |
uint32_t | iEvent_ |
uint32_t | iEventInFile_ |
int | iFile_ |
std::ifstream | in_ |
std::vector< IndexRecord > | indexTable_ |
uint32_t | indexTablePos_ |
std::string | inputDir_ |
uint32_t | lumiBlock_ |
int | nFeds_ |
int | nSecondsToSleep_ |
uint32_t | orbitNum_ |
bool | orderedRead_ |
unsigned | preScale_ |
bool | rcRead_ |
uint32_t | runNum_ |
uint64_t | timeStamp_ |
int | verbosity_ |
bool | watchFileList_ |
Static Private Attributes | |
static unsigned | fileHeaderSize = 2 |
static unsigned char | maxDataFormatVersion_ = 5 |
static const unsigned | maxEvents_ = 1<<20 |
static const unsigned | maxEventSize_ = 1<<20 |
static unsigned char | minDataFormatVersion_ = 4 |
Definition at line 14 of file LmfSource.h.
LmfSource::LmfSource | ( | const edm::ParameterSet & | pset, |
const edm::InputSourceDescription & | isd | ||
) |
Definition at line 26 of file LmfSource.cc.
References checkFileNames(), Exception, fileList_, fileListName_, preScale_, and watchFileList_.
: ConfigurableInputSource(pset, desc), fileNames_(pset.getParameter<vector<string> >("fileNames")), iFile_ (-1), fedId_(-1), fileHeader_(fileHeaderSize), dataFormatVers_(5), rcRead_(false), preScale_(pset.getParameter<unsigned>("preScale")), iEvent_(0), iEventInFile_(0), indexTablePos_(0), orderedRead_(pset.getParameter<bool>("orderedRead")), watchFileList_(pset.getParameter<bool>("watchFileList")), fileListName_(pset.getParameter<std::string>("fileListName")), inputDir_(pset.getParameter<std::string>("inputDir")), nSecondsToSleep_(pset.getParameter<int>("nSecondsToSleep")), verbosity_(pset.getUntrackedParameter<int>("verbosity")) { if(preScale_==0) preScale_ = 1; produces<FEDRawDataCollection>(); // open fileListName if (watchFileList_) { fileList_.open( fileListName_.c_str() ); if (fileList_.fail()) { throw cms::Exception("FileListOpenError") << "Failed to open input file " << fileListName_ << "\n"; } } else { //throws a cms exception if error in fileNames parameter checkFileNames(); } }
virtual LmfSource::~LmfSource | ( | ) | [inline, virtual] |
Definition at line 25 of file LmfSource.h.
{}
void LmfSource::checkFileNames | ( | ) | [private] |
Checks paths specified in fileNames_ and remove eventual file: prefix.
cms::Exception | in case of a non valid path |
Definition at line 449 of file LmfSource.cc.
References Exception, convertXMLtoSQLite_cfg::fileName, fileNames_, i, and alignCSCRings::s.
Referenced by LmfSource().
{ for(unsigned i = 0; i < fileNames_.size(); ++i){ std::string& fileName = fileNames_[i]; const char s[] = "file:"; if(fileName.compare(0, sizeof(s)-1, s)==0){ //file: prefix => to strip fileName.erase(fileName.begin(), fileName.begin() + sizeof(s)-1); } if(fileName.find_first_of(":")!=string::npos){ throw cms::Exception("LmfSource") << "Character ':' is not allowed in paths specified fileNames " << "parameter. Please note only local file (or NFS, AFS)" << " is supported (no rfio, no /store)"; } const char s1[] = "/store"; if(fileName.compare(0, sizeof(s1)-1, s1)==0){ throw cms::Exception("LmfSource") << "CMSSW /store not supported by LmfSource. Only local file " << "(or NFS/AFS) allowed. Path starting with /store not permitted"; } } }
bool LmfSource::filter | ( | ) | const [private] |
Filtering events. Used for prescale.
Definition at line 433 of file LmfSource.cc.
References iEvent_, and preScale_.
Referenced by setRunAndEventInfo().
bool LmfSource::nextEventWithinFile | ( | ) | [private] |
Move to next event within the same file. Called by nextEvent method.
Definition at line 182 of file LmfSource.cc.
References gather_cfg::cout, currentFileName_, iEventInFile_, iFile_, in_, indexTable_, orderedRead_, pos, and verbosity_.
Referenced by readEvent().
{ if(iFile_<0) return false; //no file opened. if(orderedRead_){ if(iEventInFile_>=indexTable_.size()) return false; if(verbosity_){ cout << "[LmfSource] move to event with orbit Id " << indexTable_[iEventInFile_].orbit << " at file position 0x" << hex << setfill('0') << setw(8) << indexTable_[iEventInFile_].filePos << setfill(' ') << dec << "\n"; } const streampos pos = indexTable_[iEventInFile_].filePos; in_.clear(); in_.seekg(pos); if(in_.bad()){ cout << "[LmfSource] Problem while reading file " << currentFileName_ << ". Problem with event index table?\n"; return false; } ++iEventInFile_; return true; } else{ return true; } }
bool LmfSource::openFile | ( | int | iFile | ) | [private] |
Definition at line 137 of file LmfSource.cc.
References gather_cfg::cout, currentFileName_, Exception, fileList_, fileNames_, iEventInFile_, in_, inputDir_, nSecondsToSleep_, stor::utils::sleep(), verbosity_, and watchFileList_.
Referenced by readEvent().
{ iEventInFile_ = 0; if(watchFileList_) { for ( ;; ) { // read the first field of the line, which must be the filename fileList_ >> currentFileName_; currentFileName_ = inputDir_ + "/" + currentFileName_; if (!fileList_.fail()) { // skip the rest of the line std::string tmp_buffer; std::getline(fileList_, tmp_buffer); if(verbosity_) cout << "[LmfSource]" << "Opening file " << currentFileName_ << "\n"; in_.open(currentFileName_.c_str()); if (!in_.fail()) { // file was successfully open return true; } else { // skip file edm::LogError("FileOpenError") << "Failed to open input file " << currentFileName_ << ". Skipping file\n"; in_.close(); in_.clear(); } } // if here, no new file is available: sleep and retry later if (verbosity_) std::cout << "[LmfSource]" << " going to sleep 5 seconds\n"; sleep(nSecondsToSleep_); fileList_.clear(); } } else { if(iFile > (int)fileNames_.size()-1) return false; currentFileName_ = fileNames_[iFile]; if(verbosity_) cout << "[LmfSource]" << "Opening file " << currentFileName_ << "\n"; in_.open(currentFileName_.c_str()); if(in_.fail()){ throw cms::Exception("FileOpenError") << "Failed to open input file " << currentFileName_ << "\n"; } } return true; }
bool LmfSource::produce | ( | edm::Event & | e | ) | [private, virtual] |
Called by the framework after setRunAndEventInfo()
Implements edm::ConfigurableInputSource.
Definition at line 119 of file LmfSource.cc.
References coll, gather_cfg::cout, fedColl_, edm::Event::put(), rcRead_, and verbosity_.
{ // bool rc; // while(!((rc = readFileHeader()) & readEventPayload())){ // if(openFile(++iFile_)==false){//no more files // if(verbosity_) cout << "[LmfSource]" // << "No more input file"; // return false; // } // } if(rcRead_){//readout succeeded auto_ptr<FEDRawDataCollection> coll(new FEDRawDataCollection); coll->swap(fedColl_); if(verbosity_) cout << "[LmfSource] Putting FEDRawDataCollection in event\n"; evt.put(coll); } return rcRead_; }
bool LmfSource::readEvent | ( | bool | doSkip = false | ) | [private] |
Reading next event
doSkip | if true skip event instead of reading it |
Definition at line 209 of file LmfSource.cc.
References gather_cfg::cout, iFile_, in_, nextEventWithinFile(), openFile(), orderedRead_, rcRead_, readEventWithinFile(), readFileHeader(), readIndexTable(), and verbosity_.
Referenced by setRunAndEventInfo().
{ while(!(nextEventWithinFile() && readEventWithinFile(doSkip))){ //failed to read event. Let's look for next file: in_.close(); in_.clear(); bool rcOpen = openFile(++iFile_); if(rcOpen==false){//no more files if(verbosity_) cout << "[LmfSource]" << "No more input file"; rcRead_ = false; return rcRead_; } rcRead_ = readFileHeader(); if(verbosity_) cout << "File header readout " << (rcRead_?"succeeded":"failed") << "\n"; if(rcRead_ && orderedRead_) readIndexTable(); } return rcRead_; }
bool LmfSource::readEventWithinFile | ( | bool | doSkip | ) | [private] |
Read event from current opened file. Called by readEvent, which deals with file chaining Beware: readEventHeader must be called beforehand.
doSkip | if true skip event instead of reading it |
Definition at line 264 of file LmfSource.cc.
References bx_, calibTrig_, filterCSVwithJSON::copy, gather_cfg::cout, currentFileName_, FEDRawData::data(), dataFormatVers_, eventNum_, Exception, fedColl_, FEDRawDataCollection::FEDData(), fedId_, header_, i, iEvent_, iFile_, in_, FEDNumbering::inRange(), lumiBlock_, maxEventSize_, minDataFormatVersion_, nFeds_, orbitNum_, rcRead_, FEDRawData::resize(), runNum_, FEDRawData::size(), timeStamp_, and verbosity_.
Referenced by readEvent().
{ if(iFile_==-1 || !rcRead_) return false; //no file open // or header reading failed //number of 32-bit word to read first to get the event size //field const int timeStamp32[] = {0, 0}; //timestamp is 64-bit long const int lumiBlock32[] = {2, 2}; const int runNum32[] = {3, 3}; const int orbitNum32[] = {4, 4}; const int bx32[] = {5, 5}; const int eventNum32[] = {6, 6}; const int activeFedId32[] = {7,-1}; const int calibTrig32[] = {-1,7}; const int nFeds32[] = {-1,8}; // const int reserved32[] = {-1,9}; const int evtHeadSize32[] = {8,10}; const unsigned char iv = dataFormatVers_-minDataFormatVersion_; assert(iv<=sizeof(timeStamp32)/sizeof(timeStamp32[0])); if((int)header_.size() < evtHeadSize32[iv]) header_.resize(evtHeadSize32[iv]); if(verbosity_) cout << "[LmfSource]" << "Reading event header\n"; in_.read((char*)&header_[0], evtHeadSize32[iv]*4); if(in_.bad()){//reading error other than eof throw cms::Exception("FileReadError") << "Error while reading from file " << currentFileName_; } if(in_.eof()) return false; if(verbosity_){ cout << "[LmfSource]" << "Event header (in hex):" << hex << setfill('0'); for(int i=0; i < evtHeadSize32[iv]; ++i){ if(i%8==0) cout << "\n"; cout << setw(8) << header_[i] << " "; } cout << dec << setfill(' ') << "\n"; } timeStamp_ = *(uint64_t*)&header_[timeStamp32[iv]]; lumiBlock_ = header_[lumiBlock32[iv]]; runNum_ = header_[runNum32[iv]]; orbitNum_ = header_[orbitNum32[iv]]; eventNum_ = header_[eventNum32[iv]]; bx_ = header_[bx32[iv]]; calibTrig_ = calibTrig32[iv]>=0?header_[calibTrig32[iv]]:0; int activeFedId = activeFedId32[iv]>=0? header_[activeFedId32[iv]]: ((calibTrig_ & 0x3F) + 600); nFeds_ = nFeds32<0?1:header_[nFeds32[iv]]; if(verbosity_){ cout << "[LmfSource] " << "timeStamp: " << /*toString(timeStamp_)*/ timeStamp_ << "\n" << "lumiBlock: " << lumiBlock_ << "\n" << "runNum: " << runNum_ << "\n" << "orbitNum: " << orbitNum_ << "\n" << "eventNum: " << eventNum_ << "\n" << "bx: " << bx_ << "\n" << "activeFedId: " << activeFedId << "\n" << "Calib trigger type: " << ((calibTrig_ >>8) & 0x3) << "\n" << "Color: " << ((calibTrig_ >>6) & 0x3) << "\n" << "nFeds: " << nFeds_ << "\n"; } const int dccLenOffset32 = 2; const int fedIdOffset32 = 0; const int nPreRead32 = 3; vector<int32_t> buf(nPreRead32); for(int iFed = 0; iFed < nFeds_; ++iFed){ in_.read((char*) &buf[0], nPreRead32*sizeof(uint32_t)); if(verbosity_){ cout << "[LmfSource] " << nPreRead32 << " first 32-bit words of " << "FED block: " << hex << setfill('0'); for(unsigned i = 0; i< buf.size(); ++i){ cout << "0x" << setw(8) << buf[i] << " "; } cout << dec << setfill(' '); } if(in_.bad()) return false; const unsigned eventSize64 = buf[dccLenOffset32] & 0x00FFFFFF; const unsigned eventSize32 = eventSize64*2; const unsigned eventSize8 = eventSize64*8; const unsigned fedId_ = (buf[fedIdOffset32] >>8) & 0xFFF; if(eventSize8 > maxEventSize_){ throw cms::Exception("FileReadError") << "Size of event fragment (FED block) read from " << " data of file " << currentFileName_ << "is unexpctively large (" << (eventSize8 >>10) << " kByte). " << "This must be an error (corrupted file?)\n"; } if(!FEDNumbering::inRange(fedId_)){ throw cms::Exception("FileReadError") << "Invalid FED number read from data file."; } int32_t toRead8 = (eventSize32-nPreRead32)*sizeof(int32_t); if(toRead8<0){ throw cms::Exception("FileReadError") << "Event size error while reading an event from file " << currentFileName_ << "\n"; } if(doSkip){//event to skip if(verbosity_) cout << "[LmfSource] " << "Skipping on event. Move file pointer " << toRead8 << " ahead.\n"; in_.seekg(toRead8, ios::cur); if(in_.bad()){//reading error other than eof throw cms::Exception("FileReadError") << "Error while reading from file " << currentFileName_; } } else{ //reads FED data: FEDRawData& data_ = fedColl_.FEDData(fedId_); data_.resize(eventSize8); //copy already read data: copy(buf.begin(), buf.end(), (int32_t*)data_.data()); in_.read((char*)(data_.data()) + nPreRead32*4, toRead8); if(in_.bad()){//reading error other than eof throw cms::Exception("FileReadError") << "Error while reading from file " << currentFileName_; } if(verbosity_ && data_.size()>16){ cout << "[LmfSource]" << "Head of DCC data (in hex):" << hex; for(int i=0; i < 16; ++i){ if(i%8==0) cout << "\n"; cout << setw(8) << ((uint32_t*)data_.data())[i] << " "; } cout << dec << "\n"; } if(dataFormatVers_<=4){//calib trigger in not in event header. // gets it from DCC block calibTrig_ = (((uint32_t*)data_.data())[5] & 0xFC0) | ((activeFedId-600) & 0x3F); if(verbosity_){ cout << "[LmfSource] Old data format. " "Uses information read from FED block to retrieve calibration " "trigger type. Value is: 0x" << hex << setfill('0') << setw(3) << calibTrig_ << setfill(' ') << dec << "\n"; } } } if(in_.eof()) return false; } ++iEvent_; return true; }
bool LmfSource::readFileHeader | ( | ) | [private] |
Definition at line 61 of file LmfSource.cc.
References gather_cfg::cout, currentFileName_, dataFormatVers_, Exception, fileHeader_, fileHeaderSize, i, iFile_, in_, indexTablePos_, maxDataFormatVersion_, minDataFormatVersion_, and verbosity_.
Referenced by readEvent().
{ if(iFile_==-1) return false; //no file open if(verbosity_) cout << "[LmfSource]" << "Opening file #" << (iFile_+1) << " '" << currentFileName_ << "'\n"; in_.read((char*)&fileHeader_[0], fileHeaderSize*sizeof(uint32_t)); if(in_.eof()) return false; if(verbosity_){ cout << "[LmfSource]" << "File header (in hex):" << hex; for(unsigned i=0; i < fileHeaderSize; ++i){ if(i%8==0) cout << "\n"; cout << setw(8) << fileHeader_[i] << " "; } cout << dec << "\n"; } char id[4]; id[0] = fileHeader_[0] & 0xFF; id[1] = (fileHeader_[0] >>8) & 0xFF; id[2] = (fileHeader_[0] >>16) & 0xFF; id[3] = (fileHeader_[0] >>24) & 0xFF; if(!(id[0]=='L' && id[1] == 'M' && id[2] == 'F')){ throw cms::Exception("FileReadError") << currentFileName_ << " is not a file in LMF format!"; } dataFormatVers_ = id[3]; if(verbosity_) cout << "[LmfSource]" << "LMF format: " << (int)dataFormatVers_ << "\n"; if(dataFormatVers_ > maxDataFormatVersion_ || dataFormatVers_ < minDataFormatVersion_){ throw cms::Exception("FileReadError") << currentFileName_ << ": LMF format version " << (int) dataFormatVers_ << " is not supported by this release of LmfSource module"; } indexTablePos_ = fileHeader_[1]; if(verbosity_) cout << "[LmfSource] File position of index table: 0x" << setfill('0') << hex << setw(8) << indexTablePos_ << setfill(' ') << dec << "\n"; if(dataFormatVers_ < 5){ in_.ignore(4); } return true; }
void LmfSource::readIndexTable | ( | ) | [private] |
Reads event index table from input file. readFileHeader() must be called beforehand.
Definition at line 472 of file LmfSource.cc.
References currentFileName_, Exception, in_, indexTable_, indexTablePos_, maxEvents_, and launcher::nevts.
Referenced by readEvent().
{ stringstream errMsg; errMsg << "Error while reading event index table of file " << currentFileName_ << ". Try to read it with " << "option orderedRead disabled.\n"; if(indexTablePos_==0) throw cms::Exception("LmfSource") << errMsg.str(); in_.clear(); in_.seekg(indexTablePos_); uint32_t nevts = 0; in_.read((char*)&nevts, sizeof(nevts)); in_.ignore(4); if(nevts>maxEvents_){ throw cms::Exception("LmfSource") << "Number of events indicated in event index of file " << currentFileName_ << " is unexpectively large. File cannot be " << "read in time-ordered event mode. See orderedRead parmater of " << "LmfSource module.\n"; } //if(in_.bad()) throw cms::Exception("LmfSource") << errMsg.str(); if(in_.bad()) throw cms::Exception("LmfSource") << errMsg.str(); indexTable_.resize(nevts); in_.read((char*)&indexTable_[0], nevts*sizeof(IndexRecord)); }
void LmfSource::setRunAndEventInfo | ( | ) | [private, virtual] |
Callback funtion to set run and event information (lumi block, run number, event number, timestamp) Called by the framework before produce()
Reimplemented from edm::ConfigurableInputSource.
Definition at line 229 of file LmfSource.cc.
References gather_cfg::cout, eventNum_, fedColl_, FEDRawDataCollection::FEDData(), fedId_, filter(), lumiBlock_, readEvent(), FEDRawData::resize(), runNum_, edm::ConfigurableInputSource::setEventNumber(), edm::InputSource::setLuminosityBlockNumber_t(), edm::InputSource::setRunNumber(), edm::ConfigurableInputSource::setTime(), timeStamp_, and verbosity_.
{ //empties collection: if(fedId_>0){ fedColl_.FEDData(fedId_).resize(0); } if(verbosity_) cout << "[LmfSource]" << "About to read event...\n"; bool rc; for(;;){ if(filter()){//event to read rc = readEvent(); break; //either event is read or no more event } else { //event to skip rc = readEvent(true); if(rc==false){//no more events break; } } } if(!rc) return; //event readout failed if(verbosity_) cout << "[LmfSource]" << "Setting event time to " << /*toString(*/timeStamp_/*)*/ << ", " << "Run number to " << runNum_ << "," << "Event number to " << eventNum_ << "\n"; setTime(timeStamp_); setRunNumber(runNum_); setEventNumber(eventNum_); setLuminosityBlockNumber_t(lumiBlock_); }
std::string LmfSource::toString | ( | edm::TimeValue_t & | t | ) | const [private] |
timeval to string conversion
t | timestamp |
Definition at line 437 of file LmfSource.cc.
uint32_t LmfSource::bx_ [private] |
Definition at line 129 of file LmfSource.h.
Referenced by readEventWithinFile().
int LmfSource::calibTrig_ [private] |
Definition at line 153 of file LmfSource.h.
Referenced by readEventWithinFile().
std::string LmfSource::currentFileName_ [private] |
currently open file
Definition at line 192 of file LmfSource.h.
Referenced by nextEventWithinFile(), openFile(), readEventWithinFile(), readFileHeader(), and readIndexTable().
unsigned char LmfSource::dataFormatVers_ [private] |
Definition at line 133 of file LmfSource.h.
Referenced by readEventWithinFile(), and readFileHeader().
FEDRawData LmfSource::emptyFedBlock_ [private] |
empty fed block
Definition at line 72 of file LmfSource.h.
uint32_t LmfSource::eventNum_ [private] |
Definition at line 130 of file LmfSource.h.
Referenced by readEventWithinFile(), and setRunAndEventInfo().
FEDRawDataCollection LmfSource::fedColl_ [private] |
Buffer for FED block collection
Definition at line 68 of file LmfSource.h.
Referenced by produce(), readEventWithinFile(), and setRunAndEventInfo().
int LmfSource::fedId_ [private] |
FED ID present in FED data collection (only one FED at a time)
Definition at line 77 of file LmfSource.h.
Referenced by readEventWithinFile(), and setRunAndEventInfo().
std::vector<uint32_t> LmfSource::fileHeader_ [private] |
Buffer for file header readout
Definition at line 87 of file LmfSource.h.
Referenced by readFileHeader().
unsigned LmfSource::fileHeaderSize = 2 [static, private] |
Definition at line 83 of file LmfSource.h.
Referenced by readFileHeader().
std::ifstream LmfSource::fileList_ [private] |
Definition at line 194 of file LmfSource.h.
Referenced by LmfSource(), and openFile().
std::string LmfSource::fileListName_ [private] |
name of the textfile with the input file list
Definition at line 184 of file LmfSource.h.
Referenced by LmfSource().
std::vector<std::string> LmfSource::fileNames_ [private] |
List of names of the input files
Definition at line 60 of file LmfSource.h.
Referenced by checkFileNames(), and openFile().
std::vector<uint32_t> LmfSource::header_ [private] |
Buffer for event header readout
Definition at line 81 of file LmfSource.h.
Referenced by readEventWithinFile().
uint32_t LmfSource::iEvent_ [private] |
Sequential number of event.
Definition at line 145 of file LmfSource.h.
Referenced by filter(), and readEventWithinFile().
uint32_t LmfSource::iEventInFile_ [private] |
Sequential number of event reset at each newly opened file
Definition at line 149 of file LmfSource.h.
Referenced by nextEventWithinFile(), and openFile().
int LmfSource::iFile_ [private] |
Index of the current process file
Definition at line 64 of file LmfSource.h.
Referenced by nextEventWithinFile(), readEvent(), readEventWithinFile(), and readFileHeader().
std::ifstream LmfSource::in_ [private] |
Definition at line 135 of file LmfSource.h.
Referenced by nextEventWithinFile(), openFile(), readEvent(), readEventWithinFile(), readFileHeader(), and readIndexTable().
std::vector<IndexRecord> LmfSource::indexTable_ [private] |
Table with file position of each event order by event time (orbit id used as time measurement).
Definition at line 160 of file LmfSource.h.
Referenced by nextEventWithinFile(), and readIndexTable().
uint32_t LmfSource::indexTablePos_ [private] |
Definition at line 151 of file LmfSource.h.
Referenced by readFileHeader(), and readIndexTable().
std::string LmfSource::inputDir_ [private] |
absolute path from which filename in fileListName_ is valid
Definition at line 188 of file LmfSource.h.
Referenced by openFile().
uint32_t LmfSource::lumiBlock_ [private] |
Definition at line 127 of file LmfSource.h.
Referenced by readEventWithinFile(), and setRunAndEventInfo().
unsigned char LmfSource::maxDataFormatVersion_ = 5 [static, private] |
Maximal LMF data format version supported.
Definition at line 96 of file LmfSource.h.
Referenced by readFileHeader().
const unsigned LmfSource::maxEvents_ = 1<<20 [static, private] |
Limit of number of events to prevent exhausting memory with indexTable_ in case of file corruption.
Reimplemented from edm::InputSource.
Definition at line 165 of file LmfSource.h.
Referenced by readIndexTable().
const unsigned LmfSource::maxEventSize_ = 1<<20 [static, private] |
Limit on event size to prevent exhausting memory in case of error in the event size read from file.
Definition at line 170 of file LmfSource.h.
Referenced by readEventWithinFile().
unsigned char LmfSource::minDataFormatVersion_ = 4 [static, private] |
Minimal LMF data format version supported.
Definition at line 92 of file LmfSource.h.
Referenced by readEventWithinFile(), and readFileHeader().
int LmfSource::nFeds_ [private] |
Definition at line 155 of file LmfSource.h.
Referenced by readEventWithinFile().
int LmfSource::nSecondsToSleep_ [private] |
seconds to sleep before checking fileList_ for updates
Definition at line 198 of file LmfSource.h.
Referenced by openFile().
uint32_t LmfSource::orbitNum_ [private] |
Definition at line 131 of file LmfSource.h.
Referenced by readEventWithinFile().
bool LmfSource::orderedRead_ [private] |
Switch for enabling reading event in ordered using event index table
Definition at line 175 of file LmfSource.h.
Referenced by nextEventWithinFile(), and readEvent().
unsigned LmfSource::preScale_ [private] |
Definition at line 141 of file LmfSource.h.
Referenced by filter(), and LmfSource().
bool LmfSource::rcRead_ [private] |
Flags of last event read success: true->succeeded, false->failed
Definition at line 139 of file LmfSource.h.
Referenced by produce(), readEvent(), and readEventWithinFile().
uint32_t LmfSource::runNum_ [private] |
Definition at line 128 of file LmfSource.h.
Referenced by readEventWithinFile(), and setRunAndEventInfo().
uint64_t LmfSource::timeStamp_ [private] |
Definition at line 126 of file LmfSource.h.
Referenced by readEventWithinFile(), and setRunAndEventInfo().
int LmfSource::verbosity_ [private] |
Debugging level
Definition at line 202 of file LmfSource.h.
Referenced by nextEventWithinFile(), openFile(), produce(), readEvent(), readEventWithinFile(), readFileHeader(), and setRunAndEventInfo().
bool LmfSource::watchFileList_ [private] |
enable reading input file list from text file and keep watching the text file for updates
Definition at line 180 of file LmfSource.h.
Referenced by LmfSource(), and openFile().