Skip to content

Commit 7edfe25

Browse files
committed
Please consider the following formatting changes
1 parent 46108aa commit 7edfe25

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Common/TableProducer/PID/pidTPC.cxx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@
3333
#include "TableHelper.h"
3434
#include "pidTPCBase.h"
3535

36+
#include "Common/CCDB/ctpRateFetcher.h"
3637
#include "Common/Core/PID/TPCPIDResponse.h"
3738
#include "Common/DataModel/EventSelection.h"
3839
#include "Common/DataModel/Multiplicity.h"
3940
#include "Common/DataModel/PIDResponseTPC.h"
40-
#include "Common/CCDB/ctpRateFetcher.h"
4141
#include "Tools/ML/model.h"
4242

4343
#include "CCDB/BasicCCDBManager.h"
@@ -154,7 +154,7 @@ 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-
157+
158158
// Parametrization configuration
159159
bool useCCDBParam = false;
160160
std::vector<float> track_properties;
@@ -404,12 +404,12 @@ struct tpcPid {
404404
track_properties[counter_track_props + 6] = trk.has_collision() ? collisions.iteratorAt(trk.collisionId()).ft0cOccupancyInTimeRange() / 60000. : 1.;
405405
}
406406
if (input_dimensions == 8 && networkVersion == "3") {
407-
if(trk.has_collision()){
407+
if (trk.has_collision()) {
408408
auto trk_bc = (collisions.iteratorAt(trk.collisionId())).template bc_as<B>();
409409
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.;
411-
}else{
412-
track_properties[counter_track_props + 7] =1;
410+
track_properties[counter_track_props + 7] = hadronicRate / 50.;
411+
} else {
412+
track_properties[counter_track_props + 7] = 1;
413413
}
414414
}
415415

0 commit comments

Comments
 (0)