You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
std::cout<<"mTFCounter= "<< mTFCounter << " from params: "<< 3564*32/alpParams.roFrameLengthInBC << " from redout: "<< nTriggersProcessed<< " number from geometry: "<<o2::base::GRPGeomHelper::instance().getGRPECS()->getNHBFPerTF()<<std::endl;
190
-
int expectedValue = static_cast<int>(o2::constants::lhc::LHCMaxBunches * o2::base::GRPGeomHelper::instance().getGRPECS()->getNHBFPerTF() / alpParams.roFrameLengthInBC);
191
-
if ( (expectedValue != nTriggersProcessed) && mTFCounter > 1) LOG(fatal)<< "Inconsistant size of ROF and Strobbing rate, from parameters: "<< 3564*32/alpParams.roFrameLengthInBC << " from readout: "<< nTriggersProcessed;
189
+
int expectedTFSize = static_cast<int>(o2::constants::lhc::LHCMaxBunches *o2::base::GRPGeomHelper::instance().getGRPECS()->getNHBFPerTF() / alpParams.roFrameLengthInBC); // 3564*32 / ROF Length in BS = number of ROFs per TF
190
+
if ((expectedTFSize != nTriggersProcessed) && mTFCounter > 1)
191
+
LOG(fatal)<< "Inconsistent number of ROF per TF. From parameters: "<< expectedTFSize << " from readout: " << nTriggersProcessed;
192
192
193
193
if (mDoClusters && mClusterer->getMaxROFDepthToSquash()) {
194
194
// Digits squashing require to run on a batch of digits and uses a digit reader, cannot (?) run with decoder
0 commit comments