Skip to content

Commit af8bbd6

Browse files
committed
Please consider the following formatting changes
1 parent 4cc8caa commit af8bbd6

1 file changed

Lines changed: 11 additions & 11 deletions

File tree

DPG/Tasks/FIT/fitAll.cxx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
///
1515
/// \author Andreas Molander andreas.molander@cern.ch
1616

17-
1817
#include "Common/DataModel/EventSelection.h"
1918
#include "Common/DataModel/FT0Corrected.h"
2019
#include "Common/DataModel/Multiplicity.h"
2120

21+
#include "FV0Base/Constants.h"
2222
#include "Framework/AnalysisDataModel.h"
2323
#include "Framework/AnalysisTask.h"
2424
#include "Framework/runDataProcessing.h"
25-
#include "FV0Base/Constants.h"
25+
2626
#include "FDDBase/Constants.h"
2727

2828
#include <cstdint>
@@ -103,9 +103,9 @@ DECLARE_SOA_COLUMN(T0AC, t0AC, float);
103103
DECLARE_SOA_COLUMN(T0Resolution, t0resolution, float);
104104

105105
// FT0 derived quantities
106-
DECLARE_SOA_COLUMN(FT0ChAmpl, ft0ChAmpl, std::vector<float>); ///< FT0 channel amplitudes, vector idx = ch ID
107-
DECLARE_SOA_COLUMN(FT0TotAmplA, ft0TotAmplA, float); ///< FT0-A total amplitude computed from channel amplitudes (for cross check)
108-
DECLARE_SOA_COLUMN(FT0TotAmplC, ft0TotAmplC, float); ///< FT0-C total amplitude computed from channel amplitudes (for cross check)
106+
DECLARE_SOA_COLUMN(FT0ChAmpl, ft0ChAmpl, std::vector<float>); ///< FT0 channel amplitudes, vector idx = ch ID
107+
DECLARE_SOA_COLUMN(FT0TotAmplA, ft0TotAmplA, float); ///< FT0-A total amplitude computed from channel amplitudes (for cross check)
108+
DECLARE_SOA_COLUMN(FT0TotAmplC, ft0TotAmplC, float); ///< FT0-C total amplitude computed from channel amplitudes (for cross check)
109109

110110
// FV0As
111111
DECLARE_SOA_COLUMN(FV0BCId, fv0BCId, int32_t);
@@ -159,18 +159,18 @@ using FITAll = FITsAll::iterator;
159159

160160
} // namespace o2::aod
161161

162-
163162
struct fitAll {
164163
// Producer
165164
Produces<o2::aod::FITAll> table;
166165

167166
void init(InitContext const&)
168167
{
169168
}
170-
169+
171170
void process(soa::Join<aod::Collisions, aod::EvSels, aod::MultsRun3, aod::FT0sCorrected> const& collisions,
172171
aod::BCsWithTimestamps const&,
173-
aod::FT0s const&, aod::FV0As const&, aod::FDDs const&, aod::Zdcs const&) {
172+
aod::FT0s const&, aod::FV0As const&, aod::FDDs const&, aod::Zdcs const&)
173+
{
174174
table.reserve(collisions.size());
175175

176176
// BC
@@ -269,13 +269,13 @@ struct fitAll {
269269

270270
for (const auto& collision : collisions) {
271271
auto bc = collision.bc_as<aod::BCsWithTimestamps>();
272-
272+
273273
// BC
274274
runNumber = bc.runNumber();
275275
globalBC = bc.globalBC();
276276
ctpTriggerMask = bc.triggerMask();
277277
ctpInputMask = bc.inputMask();
278-
278+
279279
// Timestamp
280280
timestamp = bc.timestamp();
281281

@@ -402,7 +402,7 @@ struct fitAll {
402402
fv0BCId = fv0.bcId();
403403
fv0Time = fv0.time();
404404
fv0TriggerMask = fv0.triggerMask();
405-
405+
406406
for (size_t i = 0; i < fv0.amplitude().size(); i++) {
407407
// FV0A
408408
fv0Amplitude.push_back(fv0.amplitude()[i]);

0 commit comments

Comments
 (0)