Skip to content

Commit 0e198bf

Browse files
authored
Minor printout change
1 parent 2986261 commit 0e198bf

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

PWGLF/TableProducer/Strangeness/strangenesstofpid.cxx

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1169,8 +1169,10 @@ struct strangenesstofpid {
11691169
return;
11701170
}
11711171
auto firstTOFPID = dauTrackTOFPIDs.rawIteratorAt(0);
1172-
bool isNewTOFFOrmat = firstTOFPID.straCollisionId() < 0 ? false : true;
1172+
bool isNewTOFFormat = firstTOFPID.straCollisionId() < 0 ? false : true;
11731173

1174+
LOGF(info, "Processing derived data. Is this the new TOF info format? %i", isNewTOFFormat);
1175+
11741176
// Fire up CCDB with first collision in record. If no collisions, bypass
11751177
if (useCustomRunNumber || collisions.size() < 1) {
11761178
initCCDB(manualRunNumber);
@@ -1182,7 +1184,7 @@ struct strangenesstofpid {
11821184
// hold indices
11831185
std::vector<int> tofIndices(dauTrackTable.size(), -1);
11841186

1185-
if (isNewTOFFOrmat) {
1187+
if (isNewTOFFormat) {
11861188
// re-index
11871189
for (const auto& dauTrackTOFPID : dauTrackTOFPIDs) {
11881190
tofIndices[dauTrackTOFPID.dauTrackExtraId()] = dauTrackTOFPID.globalIndex();

0 commit comments

Comments
 (0)