Skip to content
Snippets Groups Projects
Commit de871482 authored by Thomas Owen James's avatar Thomas Owen James :speech_balloon:
Browse files

removed commented out code, left TODOs

parent 12c82461
No related branches found
No related tags found
1 merge request!77Changes to run with CMSSW
Pipeline #6591378 passed
......@@ -25,20 +25,13 @@ OutputByOrbitStream::OutputByOrbitStream(ctrl &ctrl, config &conf)
void OutputByOrbitStream::OutputFixedOrbits(Slice &out) {
uint32_t orbitN = out.get_firstOrbitN();
// LOG(TRACE) << "First orbit number in file received is " << orbitN << ".";
uint32_t index = uint32_t(orbitN / conf_.getNOrbitsPerFile());
size_t n = 0;
// if (index == 0) {
// LOG(DEBUG) << "index is 0";
// }
// if (out.get_counts() == 0) {
// LOG(TRACE) << "got an empty slice ";
// }
if ((out.get_counts() != 0) || conf_.getCMSSWHeaders()) {
if (control_.running.load(std::memory_order_acquire) ||
control_.output_force_write) { // i.e should be writing data
if (!out.isInitialized()) {
// LOG(TRACE) << "Slice is uninitialised! Skipping.";
return;
}
n = fwrite(out.begin(), 1, out.size(),
......
......@@ -189,9 +189,6 @@ void OutputFileHandler::write_EoLS_file(uint32_t ls) {
LOG(TRACE) << "writing EoLS file " << EoLS_filename;
EoLS_file.open(full_filename.c_str(), std::ios_base::out);
// Originally went after "total events"
// "\",\"0\",\"" << constants::N_orbits_per_lumisection -
// ls_NOrbits_ // Who knows..
// TODO: To me it looks like there are more fields than intended in this file...
EoLS_file_string_stream << "{\n \"data\":[\"" << ls_NOrbits_ << "\",\"" // NEvents
<< 1 + max_index_per_ls_ << "\",\"" // NFiles
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment