We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48c99c2 commit b31ae36Copy full SHA for b31ae36
Detectors/EMCAL/workflow/src/StandaloneAODProducerSpec.cxx
@@ -52,7 +52,7 @@ void StandaloneAODProducerSpec::run(ProcessingContext& pc)
52
uint64_t tfNumber;
53
if (mTFNumber == -1L) {
54
// TODO has to be made globally unique (by using absolute time of TF). For now is unique within the run
55
- tfNumber = dh->tfCounter; // getTFNumber(startIR, runNumber);
+ tfNumber = uint64_t(dh->firstTForbit) + (uint64_t(dh->runNumber) << 32); // getTFNumber(mStartIR, runNumber);
56
} else {
57
tfNumber = mTFNumber;
58
}
@@ -168,4 +168,4 @@ DataProcessorSpec getStandaloneAODProducerSpec()
168
169
170
} // namespace emcal
171
-} // namespace o2
+} // namespace o2
0 commit comments