CMS 3D CMS Logo

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

#include <RawEventFileWriterForBU.h>

Public Member Functions

uint32 adler32 () const
 
void doOutputEvent (FRDEventMsgView const &msg)
 
void endOfLS (int ls)
 
void initialize (std::string const &destinationDir, std::string const &name, int ls)
 
void makeRunPrefix (std::string const &destinationDir)
 
 RawEventFileWriterForBU (edm::ParameterSet const &ps)
 
 RawEventFileWriterForBU (std::string const &fileName)
 
bool sharedMode () const
 
void start ()
 
void stop ()
 
 ~RawEventFileWriterForBU ()
 

Static Public Member Functions

static void extendDescription (edm::ParameterSetDescription &desc)
 

Private Member Functions

bool closefd ()
 
void finishFileWrite (int ls)
 
void writeJsds ()
 

Private Attributes

uint32 adlera_
 
uint32 adlerb_
 
std::string destinationDir_
 
jsoncollector::DataPointDefinition eolJsonDef_
 
jsoncollector::DataPointDefinition eorJsonDef_
 
jsoncollector::FastMonitorfileMon_ = nullptr
 
std::string fileName_
 
unsigned int frdFileVersion_
 
unsigned int lumiClosed_ = 0
 
jsoncollector::FastMonitorlumiMon_ = nullptr
 
unsigned int lumiOpen_ = 0
 
int microSleep_
 
std::unique_ptr< std::ofstream > ost_
 
int outfd_ = -1
 
jsoncollector::IntJ perFileEventCount_
 
jsoncollector::IntJ perFileSize_
 
jsoncollector::IntJ perLumiEventCount_
 
jsoncollector::IntJ perLumiFileCount_
 
jsoncollector::IntJ perLumiLostEventCount_
 
jsoncollector::IntJ perLumiSize_
 
jsoncollector::IntJ perLumiTotalEventCount_
 
jsoncollector::IntJ perRunEventCount_
 
jsoncollector::IntJ perRunFileCount_
 
jsoncollector::IntJ perRunLastLumi_
 
jsoncollector::IntJ perRunLumiCount_
 
jsoncollector::DataPointDefinition rawJsonDef_
 
int run_ = -1
 
jsoncollector::FastMonitorrunMon_ = nullptr
 
std::string runPrefix_
 
bool writtenJSDs_ = false
 

Detailed Description

Definition at line 21 of file RawEventFileWriterForBU.h.

Constructor & Destructor Documentation

◆ RawEventFileWriterForBU() [1/2]

RawEventFileWriterForBU::RawEventFileWriterForBU ( edm::ParameterSet const &  ps)
explicit

Definition at line 24 of file RawEventFileWriterForBU.cc.

25  : microSleep_(ps.getParameter<int>("microSleep")),
26  frdFileVersion_(ps.getParameter<unsigned int>("frdFileVersion")) {
27  //per-file JSD and FastMonitor
28  rawJsonDef_.setDefaultGroup("legend");
29  rawJsonDef_.addLegendItem("NEvents", "integer", DataPointDefinition::SUM);
30 
31  perFileEventCount_.setName("NEvents");
32  perFileSize_.setName("NBytes");
33 
34  fileMon_ = new FastMonitor(&rawJsonDef_, false);
37  fileMon_->commit(nullptr);
38 
39  //per-lumi JSD and FastMonitor
40  eolJsonDef_.setDefaultGroup("legend");
41  eolJsonDef_.addLegendItem("NEvents", "integer", DataPointDefinition::SUM);
43  eolJsonDef_.addLegendItem("TotalEvents", "integer", DataPointDefinition::SUM);
44  eolJsonDef_.addLegendItem("NLostEvents", "integer", DataPointDefinition::SUM);
45 
46  perLumiEventCount_.setName("NEvents");
47  perLumiFileCount_.setName("NFiles");
48  perLumiTotalEventCount_.setName("TotalEvents");
49  perLumiLostEventCount_.setName("NLostEvents");
50  perLumiSize_.setName("NBytes");
51 
52  lumiMon_ = new FastMonitor(&eolJsonDef_, false);
58  lumiMon_->commit(nullptr);
59 
60  //per-run JSD and FastMonitor
61  eorJsonDef_.setDefaultGroup("legend");
62  eorJsonDef_.addLegendItem("NEvents", "integer", DataPointDefinition::SUM);
65  eorJsonDef_.addLegendItem("LastLumi", "integer", DataPointDefinition::SUM);
66 
67  perRunEventCount_.setName("NEvents");
68  perRunFileCount_.setName("NFiles");
69  perRunLumiCount_.setName("NLumis");
70  perRunLastLumi_.setName("LastLumi");
71 
72  runMon_ = new FastMonitor(&eorJsonDef_, false);
77  runMon_->commit(nullptr);
78 }

References jsoncollector::DataPointDefinition::addLegendItem(), jsoncollector::FastMonitor::commit(), eolJsonDef_, eorJsonDef_, fileMon_, lumiMon_, perFileEventCount_, perFileSize_, perLumiEventCount_, perLumiFileCount_, perLumiLostEventCount_, perLumiSize_, perLumiTotalEventCount_, perRunEventCount_, perRunFileCount_, perRunLastLumi_, perRunLumiCount_, rawJsonDef_, jsoncollector::FastMonitor::registerGlobalMonitorable(), runMon_, jsoncollector::DataPointDefinition::setDefaultGroup(), jsoncollector::JsonMonitorable::setName(), and SUM.

◆ RawEventFileWriterForBU() [2/2]

RawEventFileWriterForBU::RawEventFileWriterForBU ( std::string const &  fileName)
explicit

Definition at line 80 of file RawEventFileWriterForBU.cc.

80 {}

◆ ~RawEventFileWriterForBU()

RawEventFileWriterForBU::~RawEventFileWriterForBU ( )

Definition at line 82 of file RawEventFileWriterForBU.cc.

82  {
83  delete fileMon_;
84  delete lumiMon_;
85  delete runMon_;
86 }

References fileMon_, lumiMon_, and runMon_.

Member Function Documentation

◆ adler32()

uint32 RawEventFileWriterForBU::adler32 ( ) const
inline

Definition at line 29 of file RawEventFileWriterForBU.h.

29 { return (adlerb_ << 16) | adlera_; }

References adlera_, and adlerb_.

◆ closefd()

bool RawEventFileWriterForBU::closefd ( )
inlineprivate

Definition at line 41 of file RawEventFileWriterForBU.h.

41  {
42  if (outfd_ >= 0) {
43  close(outfd_);
44  outfd_ = -1;
45  return true;
46  } else
47  return false;
48  }

References outfd_.

Referenced by endOfLS(), finishFileWrite(), and initialize().

◆ doOutputEvent()

void RawEventFileWriterForBU::doOutputEvent ( FRDEventMsgView const &  msg)

Definition at line 88 of file RawEventFileWriterForBU.cc.

88  {
89  ssize_t retval = write(outfd_, (void*)msg.startAddress(), msg.size());
90 
91  if ((unsigned)retval != msg.size()) {
92  throw cms::Exception("RawEventFileWriterForBU", "doOutputEvent")
93  << "Error writing FED Raw Data event data to " << fileName_ << ". Possibly the output disk "
94  << "is full?" << std::endl;
95  }
96 
97  // throttle event output
98  usleep(microSleep_);
100  perFileSize_.value() += msg.size();
101 
102  // cms::Adler32((const char*) msg.startAddress(), msg.size(), adlera_, adlerb_);
103 }

References Exception, fileName_, microSleep_, mps_check::msg, outfd_, perFileEventCount_, perFileSize_, jsoncollector::IntJ::value(), and writeEcalDQMStatus::write.

◆ endOfLS()

void RawEventFileWriterForBU::endOfLS ( int  ls)

Definition at line 249 of file RawEventFileWriterForBU.cc.

249  {
250  if (outfd_ != -1) {
252  closefd();
253  }
254  lumiMon_->snap(ls);
255 
256  std::ostringstream ostr;
257 
258  if (run_ == -1)
260 
261  ostr << destinationDir_ << "/" << runPrefix_ << "_ls" << std::setfill('0') << std::setw(4) << ls << "_EoLS"
262  << ".jsn";
263  //outfd_ = open(ostr.str().c_str(), O_WRONLY | O_CREAT, S_IWUSR | S_IRUSR | S_IWGRP | S_IRGRP | S_IWOTH | S_IROTH);
264  //closefd();
265 
266  std::string path = ostr.str();
269 
272  perRunLumiCount_.value() += 1;
274 
275  perLumiEventCount_ = 0;
276  perLumiFileCount_ = 0;
278  perLumiSize_ = 0;
279  lumiClosed_ = ls;
280 }

References closefd(), destinationDir_, jsoncollector::FastMonitor::discardCollected(), finishFileWrite(), eostools::ls(), lumiClosed_, lumiMon_, makeRunPrefix(), outfd_, jsoncollector::FastMonitor::outputFullJSON(), castor_dqm_sourceclient_file_cfg::path, perLumiEventCount_, perLumiFileCount_, perLumiSize_, perLumiTotalEventCount_, perRunEventCount_, perRunFileCount_, perRunLastLumi_, perRunLumiCount_, run_, runPrefix_, jsoncollector::FastMonitor::snap(), AlCaHLTBitMon_QueryRunRegistry::string, and jsoncollector::IntJ::value().

Referenced by stop().

◆ extendDescription()

void RawEventFileWriterForBU::extendDescription ( edm::ParameterSetDescription desc)
static

Definition at line 307 of file RawEventFileWriterForBU.cc.

307  {
308  desc.add<int>("microSleep", 0);
309  desc.add<unsigned int>("frdFileVersion", 0);
310 }

References submitPVResolutionJobs::desc.

◆ finishFileWrite()

void RawEventFileWriterForBU::finishFileWrite ( int  ls)
private

Definition at line 207 of file RawEventFileWriterForBU.cc.

207  {
208  if (frdFileVersion_ > 0) {
209  //rewind
210  lseek(outfd_, 0, SEEK_SET);
211  FRDFileHeader_v1 frdFileHeader(perFileEventCount_.value(), (uint32_t)ls, perFileSize_.value());
212  write(outfd_, (char*)&frdFileHeader, sizeof(FRDFileHeader_v1));
213  closefd();
214  //move raw file from open to run directory
215  rename(fileName_.c_str(), (destinationDir_ + fileName_.substr(fileName_.rfind('/'))).c_str());
216 
217  edm::LogInfo("RawEventFileWriterForBU")
218  << "Wrote RAW input file: " << fileName_ << " with perFileEventCount = " << perFileEventCount_.value()
219  << " and size " << perFileSize_.value();
220  } else {
221  closefd();
222  //move raw file from open to run directory
223  rename(fileName_.c_str(), (destinationDir_ + fileName_.substr(fileName_.rfind('/'))).c_str());
224  //create equivalent JSON file
225  //TODO:fix this to use DaqDirector convention and better extension replace
227  std::string path = source.replace_extension(".jsn").string();
228 
229  fileMon_->snap(ls);
232 
233  //move the json file from open
234  rename(path.c_str(), (destinationDir_ + path.substr(path.rfind('/'))).c_str());
235 
236  edm::LogInfo("RawEventFileWriterForBU")
237  << "Wrote JSON input file: " << path << " with perFileEventCount = " << perFileEventCount_.value()
238  << " and size " << perFileSize_.value();
239  }
240  //there is a small chance that script gets interrupted while this isn't consistent (non-atomic)
245  //update open lumi value when first file is completed
246  lumiOpen_ = ls;
247 }

References closefd(), destinationDir_, jsoncollector::FastMonitor::discardCollected(), fileMon_, fileName_, frdFileVersion_, eostools::ls(), lumiOpen_, outfd_, jsoncollector::FastMonitor::outputFullJSON(), castor_dqm_sourceclient_file_cfg::path, perFileEventCount_, perFileSize_, perLumiEventCount_, perLumiFileCount_, perLumiSize_, perLumiTotalEventCount_, jsoncollector::FastMonitor::snap(), source, AlCaHLTBitMon_QueryRunRegistry::string, jsoncollector::IntJ::value(), and writeEcalDQMStatus::write.

Referenced by endOfLS(), and initialize().

◆ initialize()

void RawEventFileWriterForBU::initialize ( std::string const &  destinationDir,
std::string const &  name,
int  ls 
)

Definition at line 105 of file RawEventFileWriterForBU.cc.

105  {
106  destinationDir_ = destinationDir;
107 
108  if (outfd_ != -1) {
110  closefd();
111  }
112 
113  fileName_ = name;
114 
115  if (!writtenJSDs_) {
116  writeJsds();
117  /* std::stringstream ss;
118  ss << destinationDir_ << "/jsd";
119  mkdir(ss.str().c_str(), S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
120 
121  std::string rawJSDName = ss.str()+"/rawData.jsd";
122  std::string eolJSDName = ss.str()+"/EoLS.jsd";
123  std::string eorJSDName = ss.str()+"/EoR.jsd";
124 
125  fileMon_->setDefPath(rawJSDName);
126  lumiMon_->setDefPath(eolJSDName);
127  runMon_->setDefPath(eorJSDName);
128 
129  struct stat fstat;
130  if (stat (rawJSDName.c_str(), &fstat) != 0) {
131  std::string content;
132  JSONSerializer::serialize(&rawJsonDef_,content);
133  FileIO::writeStringToFile(rawJSDName, content);
134  }
135 
136  if (stat (eolJSDName.c_str(), &fstat) != 0) {
137  std::string content;
138  JSONSerializer::serialize(&eolJsonDef_,content);
139  FileIO::writeStringToFile(eolJSDName, content);
140  }
141 
142  if (stat (eorJSDName.c_str(), &fstat) != 0) {
143  std::string content;
144  JSONSerializer::serialize(&eorJsonDef_,content);
145  FileIO::writeStringToFile(eorJSDName, content);
146  }
147 */
148  writtenJSDs_ = true;
149  }
150 
151  outfd_ = open(fileName_.c_str(), O_WRONLY | O_CREAT, S_IRWXU | S_IRWXG | S_IRWXO);
152  edm::LogInfo("RawEventFileWriterForBU") << " opened " << fileName_;
153 
154  if (outfd_ < 0) { //attention here... it may happen that outfd_ is *not* set (e.g. missing initialize call...)
155  throw cms::Exception("RawEventFileWriterForBU", "initialize")
156  << "Error opening FED Raw Data event output file: " << name << ": " << strerror(errno) << "\n";
157  }
158 
160  perFileSize_.value() = 0;
161 
162  adlera_ = 1;
163  adlerb_ = 0;
164 
165  if (frdFileVersion_ > 0) {
166  assert(frdFileVersion_ == 1);
167  //reserve space for file header
168  ftruncate(outfd_, sizeof(FRDFileHeader_v1));
169  lseek(outfd_, sizeof(FRDFileHeader_v1), SEEK_SET);
170  perFileSize_.value() = sizeof(FRDFileHeader_v1);
171  }
172 }

References adlera_, adlerb_, cms::cuda::assert(), closefd(), destinationDir_, Exception, fileName_, finishFileWrite(), frdFileVersion_, eostools::ls(), Skims_PA_cff::name, outfd_, perFileEventCount_, perFileSize_, jsoncollector::IntJ::value(), writeJsds(), and writtenJSDs_.

◆ makeRunPrefix()

void RawEventFileWriterForBU::makeRunPrefix ( std::string const &  destinationDir)

Definition at line 297 of file RawEventFileWriterForBU.cc.

297  {
298  //dirty hack: extract run number from destination directory
299  std::string::size_type pos = destinationDir.find("run");
300  std::string run = destinationDir.substr(pos + 3);
301  run_ = atoi(run.c_str());
302  std::stringstream ss;
303  ss << "run" << std::setfill('0') << std::setw(6) << run_;
304  runPrefix_ = ss.str();
305 }

References writedatasetfile::run, run_, runPrefix_, contentValuesCheck::ss, and AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by endOfLS(), and stop().

◆ sharedMode()

bool RawEventFileWriterForBU::sharedMode ( ) const
inline

Definition at line 35 of file RawEventFileWriterForBU.h.

35 { return false; }

◆ start()

void RawEventFileWriterForBU::start ( )
inline

◆ stop()

void RawEventFileWriterForBU::stop ( )

Definition at line 282 of file RawEventFileWriterForBU.cc.

282  {
283  if (lumiOpen_ > lumiClosed_)
285  edm::LogInfo("RawEventFileWriterForBU") << "Writing EOR file!";
286  if (!destinationDir_.empty()) {
287  // create EoR file
288  if (run_ == -1)
290  std::string path = destinationDir_ + "/" + runPrefix_ + "_ls0000_EoR.jsn";
291  runMon_->snap(0);
293  }
294 }

References destinationDir_, endOfLS(), lumiClosed_, lumiOpen_, makeRunPrefix(), jsoncollector::FastMonitor::outputFullJSON(), castor_dqm_sourceclient_file_cfg::path, run_, runMon_, runPrefix_, jsoncollector::FastMonitor::snap(), and AlCaHLTBitMon_QueryRunRegistry::string.

◆ writeJsds()

void RawEventFileWriterForBU::writeJsds ( )
private

Definition at line 174 of file RawEventFileWriterForBU.cc.

174  {
175  std::stringstream ss;
176  ss << destinationDir_ << "/jsd";
177  mkdir(ss.str().c_str(), S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
178 
179  std::string rawJSDName = ss.str() + "/rawData.jsd";
180  std::string eolJSDName = ss.str() + "/EoLS.jsd";
181  std::string eorJSDName = ss.str() + "/EoR.jsd";
182 
183  fileMon_->setDefPath(rawJSDName);
184  lumiMon_->setDefPath(eolJSDName);
185  runMon_->setDefPath(eorJSDName);
186 
187  struct stat fstat;
188  if (stat(rawJSDName.c_str(), &fstat) != 0) {
191  FileIO::writeStringToFile(rawJSDName, content);
192  }
193 
194  if (stat(eolJSDName.c_str(), &fstat) != 0) {
197  FileIO::writeStringToFile(eolJSDName, content);
198  }
199 
200  if (stat(eorJSDName.c_str(), &fstat) != 0) {
203  FileIO::writeStringToFile(eorJSDName, content);
204  }
205 }

References Skims_PA_cff::content, destinationDir_, eolJsonDef_, eorJsonDef_, fileMon_, lumiMon_, eostools::mkdir(), rawJsonDef_, runMon_, cond::serialize(), jsoncollector::FastMonitor::setDefPath(), contentValuesCheck::ss, hgcalPlots::stat, and AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by initialize().

Member Data Documentation

◆ adlera_

uint32 RawEventFileWriterForBU::adlera_
private

Definition at line 86 of file RawEventFileWriterForBU.h.

Referenced by adler32(), and initialize().

◆ adlerb_

uint32 RawEventFileWriterForBU::adlerb_
private

Definition at line 87 of file RawEventFileWriterForBU.h.

Referenced by adler32(), and initialize().

◆ destinationDir_

std::string RawEventFileWriterForBU::destinationDir_
private

Definition at line 81 of file RawEventFileWriterForBU.h.

Referenced by endOfLS(), finishFileWrite(), initialize(), stop(), and writeJsds().

◆ eolJsonDef_

jsoncollector::DataPointDefinition RawEventFileWriterForBU::eolJsonDef_
private

Definition at line 75 of file RawEventFileWriterForBU.h.

Referenced by RawEventFileWriterForBU(), and writeJsds().

◆ eorJsonDef_

jsoncollector::DataPointDefinition RawEventFileWriterForBU::eorJsonDef_
private

Definition at line 76 of file RawEventFileWriterForBU.h.

Referenced by RawEventFileWriterForBU(), and writeJsds().

◆ fileMon_

jsoncollector::FastMonitor* RawEventFileWriterForBU::fileMon_ = nullptr
private

◆ fileName_

std::string RawEventFileWriterForBU::fileName_
private

Definition at line 80 of file RawEventFileWriterForBU.h.

Referenced by doOutputEvent(), finishFileWrite(), and initialize().

◆ frdFileVersion_

unsigned int RawEventFileWriterForBU::frdFileVersion_
private

Definition at line 84 of file RawEventFileWriterForBU.h.

Referenced by finishFileWrite(), and initialize().

◆ lumiClosed_

unsigned int RawEventFileWriterForBU::lumiClosed_ = 0
private

Definition at line 90 of file RawEventFileWriterForBU.h.

Referenced by endOfLS(), and stop().

◆ lumiMon_

jsoncollector::FastMonitor* RawEventFileWriterForBU::lumiMon_ = nullptr
private

◆ lumiOpen_

unsigned int RawEventFileWriterForBU::lumiOpen_ = 0
private

Definition at line 89 of file RawEventFileWriterForBU.h.

Referenced by finishFileWrite(), and stop().

◆ microSleep_

int RawEventFileWriterForBU::microSleep_
private

Definition at line 83 of file RawEventFileWriterForBU.h.

Referenced by doOutputEvent().

◆ ost_

std::unique_ptr<std::ofstream> RawEventFileWriterForBU::ost_
private

Definition at line 79 of file RawEventFileWriterForBU.h.

◆ outfd_

int RawEventFileWriterForBU::outfd_ = -1
private

◆ perFileEventCount_

jsoncollector::IntJ RawEventFileWriterForBU::perFileEventCount_
private

◆ perFileSize_

jsoncollector::IntJ RawEventFileWriterForBU::perFileSize_
private

◆ perLumiEventCount_

jsoncollector::IntJ RawEventFileWriterForBU::perLumiEventCount_
private

Definition at line 61 of file RawEventFileWriterForBU.h.

Referenced by endOfLS(), finishFileWrite(), and RawEventFileWriterForBU().

◆ perLumiFileCount_

jsoncollector::IntJ RawEventFileWriterForBU::perLumiFileCount_
private

Definition at line 62 of file RawEventFileWriterForBU.h.

Referenced by endOfLS(), finishFileWrite(), and RawEventFileWriterForBU().

◆ perLumiLostEventCount_

jsoncollector::IntJ RawEventFileWriterForBU::perLumiLostEventCount_
private

Definition at line 64 of file RawEventFileWriterForBU.h.

Referenced by RawEventFileWriterForBU().

◆ perLumiSize_

jsoncollector::IntJ RawEventFileWriterForBU::perLumiSize_
private

Definition at line 65 of file RawEventFileWriterForBU.h.

Referenced by endOfLS(), finishFileWrite(), and RawEventFileWriterForBU().

◆ perLumiTotalEventCount_

jsoncollector::IntJ RawEventFileWriterForBU::perLumiTotalEventCount_
private

Definition at line 63 of file RawEventFileWriterForBU.h.

Referenced by endOfLS(), finishFileWrite(), and RawEventFileWriterForBU().

◆ perRunEventCount_

jsoncollector::IntJ RawEventFileWriterForBU::perRunEventCount_
private

Definition at line 56 of file RawEventFileWriterForBU.h.

Referenced by endOfLS(), and RawEventFileWriterForBU().

◆ perRunFileCount_

jsoncollector::IntJ RawEventFileWriterForBU::perRunFileCount_
private

Definition at line 57 of file RawEventFileWriterForBU.h.

Referenced by endOfLS(), and RawEventFileWriterForBU().

◆ perRunLastLumi_

jsoncollector::IntJ RawEventFileWriterForBU::perRunLastLumi_
private

Definition at line 59 of file RawEventFileWriterForBU.h.

Referenced by endOfLS(), and RawEventFileWriterForBU().

◆ perRunLumiCount_

jsoncollector::IntJ RawEventFileWriterForBU::perRunLumiCount_
private

Definition at line 58 of file RawEventFileWriterForBU.h.

Referenced by endOfLS(), and RawEventFileWriterForBU().

◆ rawJsonDef_

jsoncollector::DataPointDefinition RawEventFileWriterForBU::rawJsonDef_
private

Definition at line 74 of file RawEventFileWriterForBU.h.

Referenced by RawEventFileWriterForBU(), and writeJsds().

◆ run_

int RawEventFileWriterForBU::run_ = -1
private

Definition at line 53 of file RawEventFileWriterForBU.h.

Referenced by endOfLS(), makeRunPrefix(), and stop().

◆ runMon_

jsoncollector::FastMonitor* RawEventFileWriterForBU::runMon_ = nullptr
private

◆ runPrefix_

std::string RawEventFileWriterForBU::runPrefix_
private

Definition at line 54 of file RawEventFileWriterForBU.h.

Referenced by endOfLS(), makeRunPrefix(), and stop().

◆ writtenJSDs_

bool RawEventFileWriterForBU::writtenJSDs_ = false
private

Definition at line 77 of file RawEventFileWriterForBU.h.

Referenced by initialize().

eostools.ls
def ls(path, rec=False)
Definition: eostools.py:349
SUM
#define SUM(A, B)
Definition: Simplify_begin.h:52
RawEventFileWriterForBU::writtenJSDs_
bool writtenJSDs_
Definition: RawEventFileWriterForBU.h:77
jsoncollector::DataPointDefinition::addLegendItem
void addLegendItem(std::string const &name, std::string const &type, std::string const &operation)
Definition: DataPointDefinition.cc:93
RawEventFileWriterForBU::runPrefix_
std::string runPrefix_
Definition: RawEventFileWriterForBU.h:54
RawEventFileWriterForBU::perFileEventCount_
jsoncollector::IntJ perFileEventCount_
Definition: RawEventFileWriterForBU.h:67
RawEventFileWriterForBU::eolJsonDef_
jsoncollector::DataPointDefinition eolJsonDef_
Definition: RawEventFileWriterForBU.h:75
jsoncollector::DataPointDefinition::setDefaultGroup
void setDefaultGroup(std::string const &group)
Definition: DataPointDefinition.h:54
RawEventFileWriterForBU::perRunLastLumi_
jsoncollector::IntJ perRunLastLumi_
Definition: RawEventFileWriterForBU.h:59
RawEventFileWriterForBU::adlera_
uint32 adlera_
Definition: RawEventFileWriterForBU.h:86
RawEventFileWriterForBU::microSleep_
int microSleep_
Definition: RawEventFileWriterForBU.h:83
RawEventFileWriterForBU::eorJsonDef_
jsoncollector::DataPointDefinition eorJsonDef_
Definition: RawEventFileWriterForBU.h:76
RawEventFileWriterForBU::fileName_
std::string fileName_
Definition: RawEventFileWriterForBU.h:80
RawEventFileWriterForBU::perLumiLostEventCount_
jsoncollector::IntJ perLumiLostEventCount_
Definition: RawEventFileWriterForBU.h:64
jsoncollector::FastMonitor::commit
void commit(std::vector< unsigned int > *streamLumisPtr)
Definition: FastMonitor.cc:115
pos
Definition: PixelAliasList.h:18
RawEventFileWriterForBU::perRunLumiCount_
jsoncollector::IntJ perRunLumiCount_
Definition: RawEventFileWriterForBU.h:58
cms::cuda::assert
assert(be >=bs)
RawEventFileWriterForBU::perLumiFileCount_
jsoncollector::IntJ perLumiFileCount_
Definition: RawEventFileWriterForBU.h:62
mps_check.msg
tuple msg
Definition: mps_check.py:285
RawEventFileWriterForBU::perRunEventCount_
jsoncollector::IntJ perRunEventCount_
Definition: RawEventFileWriterForBU.h:56
edm::LogInfo
Log< level::Info, false > LogInfo
Definition: MessageLogger.h:125
rename
Definition: rename.py:1
jsoncollector::FastMonitor::registerGlobalMonitorable
void registerGlobalMonitorable(JsonMonitorable *newMonitorable, bool NAifZeroUpdates, unsigned int *nBins=nullptr)
Definition: FastMonitor.cc:66
RawEventFileWriterForBU::lumiOpen_
unsigned int lumiOpen_
Definition: RawEventFileWriterForBU.h:89
contentValuesCheck.ss
ss
Definition: contentValuesCheck.py:33
jsoncollector::JsonMonitorable::setName
virtual void setName(std::string name)
Definition: JsonMonitorable.h:38
trigger::size_type
uint16_t size_type
Definition: TriggerTypeDefs.h:18
RawEventFileWriterForBU::adlerb_
uint32 adlerb_
Definition: RawEventFileWriterForBU.h:87
hgcalPlots.stat
stat
Definition: hgcalPlots.py:1119
jsoncollector::FastMonitor::setDefPath
void setDefPath(std::string const &dpath)
Definition: FastMonitor.h:32
RawEventFileWriterForBU::perLumiEventCount_
jsoncollector::IntJ perLumiEventCount_
Definition: RawEventFileWriterForBU.h:61
source
static const std::string source
Definition: EdmProvDump.cc:47
eostools.mkdir
def mkdir(path)
Definition: eostools.py:251
RawEventFileWriterForBU::perLumiSize_
jsoncollector::IntJ perLumiSize_
Definition: RawEventFileWriterForBU.h:65
RawEventFileWriterForBU::frdFileVersion_
unsigned int frdFileVersion_
Definition: RawEventFileWriterForBU.h:84
RawEventFileWriterForBU::lumiClosed_
unsigned int lumiClosed_
Definition: RawEventFileWriterForBU.h:90
RawEventFileWriterForBU::runMon_
jsoncollector::FastMonitor * runMon_
Definition: RawEventFileWriterForBU.h:72
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
RawEventFileWriterForBU::closefd
bool closefd()
Definition: RawEventFileWriterForBU.h:41
RawEventFileWriterForBU::perRunFileCount_
jsoncollector::IntJ perRunFileCount_
Definition: RawEventFileWriterForBU.h:57
RawEventFileWriterForBU::writeJsds
void writeJsds()
Definition: RawEventFileWriterForBU.cc:174
Skims_PA_cff.content
content
Definition: Skims_PA_cff.py:19
RawEventFileWriterForBU::finishFileWrite
void finishFileWrite(int ls)
Definition: RawEventFileWriterForBU.cc:207
RawEventFileWriterForBU::outfd_
int outfd_
Definition: RawEventFileWriterForBU.h:51
RawEventFileWriterForBU::rawJsonDef_
jsoncollector::DataPointDefinition rawJsonDef_
Definition: RawEventFileWriterForBU.h:74
jsoncollector::FastMonitor
Definition: FastMonitor.h:19
jsoncollector::IntJ::value
long & value()
Definition: JsonMonitorable.h:88
writeEcalDQMStatus.write
write
Definition: writeEcalDQMStatus.py:48
RawEventFileWriterForBU::run_
int run_
Definition: RawEventFileWriterForBU.h:53
FRDFileHeader_v1
Definition: FRDFileHeader.h:22
RawEventFileWriterForBU::perLumiTotalEventCount_
jsoncollector::IntJ perLumiTotalEventCount_
Definition: RawEventFileWriterForBU.h:63
RawEventFileWriterForBU::perFileSize_
jsoncollector::IntJ perFileSize_
Definition: RawEventFileWriterForBU.h:68
jsoncollector::FastMonitor::outputFullJSON
bool outputFullJSON(std::string const &path, unsigned int lumi)
Definition: FastMonitor.cc:264
submitPVResolutionJobs.desc
string desc
Definition: submitPVResolutionJobs.py:251
writedatasetfile.run
run
Definition: writedatasetfile.py:27
Exception
Definition: hltDiff.cc:246
RawEventFileWriterForBU::destinationDir_
std::string destinationDir_
Definition: RawEventFileWriterForBU.h:81
cond::serialize
std::pair< Binary, Binary > serialize(const T &payload)
Definition: Serialization.h:66
Skims_PA_cff.name
name
Definition: Skims_PA_cff.py:17
jsoncollector::FastMonitor::snap
void snap(unsigned int ls)
Definition: FastMonitor.cc:189
castor_dqm_sourceclient_file_cfg.path
path
Definition: castor_dqm_sourceclient_file_cfg.py:37
jsoncollector::FastMonitor::discardCollected
void discardCollected(unsigned int forLumi)
Definition: FastMonitor.cc:280
RawEventFileWriterForBU::makeRunPrefix
void makeRunPrefix(std::string const &destinationDir)
Definition: RawEventFileWriterForBU.cc:297
RawEventFileWriterForBU::fileMon_
jsoncollector::FastMonitor * fileMon_
Definition: RawEventFileWriterForBU.h:70
RawEventFileWriterForBU::endOfLS
void endOfLS(int ls)
Definition: RawEventFileWriterForBU.cc:249
RawEventFileWriterForBU::lumiMon_
jsoncollector::FastMonitor * lumiMon_
Definition: RawEventFileWriterForBU.h:71