Skip to content

Commit bf6689e

Browse files
author
Ana Marin
committed
[Common] Fixing formatting errors
1 parent 46108aa commit bf6689e

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

Common/TableProducer/PID/pidTPC.cxx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,6 @@ struct tpcPid {
154154
Configurable<float> networkInputBatchedMode{"networkInputBatchedMode", -1, {"-1: Takes all tracks, >0: Takes networkInputBatchedMode number of tracks at once"}};
155155
Configurable<std::string> irSource{"irSource", "ZNC hadronic", "Estimator of the interaction rate (Recommended: pp --> T0VTX, Pb-Pb --> ZNC hadronic)"};
156156
ctpRateFetcher mRateFetcher;
157-
158157
// Parametrization configuration
159158
bool useCCDBParam = false;
160159
std::vector<float> track_properties;
@@ -404,12 +403,12 @@ struct tpcPid {
404403
track_properties[counter_track_props + 6] = trk.has_collision() ? collisions.iteratorAt(trk.collisionId()).ft0cOccupancyInTimeRange() / 60000. : 1.;
405404
}
406405
if (input_dimensions == 8 && networkVersion == "3") {
407-
if(trk.has_collision()){
406+
if (trk.has_collision()) {
408407
auto trk_bc = (collisions.iteratorAt(trk.collisionId())).template bc_as<B>();
409408
float hadronicRate = mRateFetcher.fetch(ccdb.service, trk_bc.timestamp(), trk_bc.runNumber(), irSource) * 1.e-3;
410-
track_properties[counter_track_props + 7] = hadronicRate/50.;
409+
track_properties[counter_track_props + 7] = hadronicRate / 50.;
411410
}else{
412-
track_properties[counter_track_props + 7] =1;
411+
track_properties[counter_track_props + 7] = 1;
413412
}
414413
}
415414

0 commit comments

Comments
 (0)