Skip to content

Commit 86f343a

Browse files
committed
Please consider the following formatting changes
1 parent deabf06 commit 86f343a

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Detectors/TPC/workflow/include/TPCWorkflow/TPCTimeSeriesSpec.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace tpc
2323
static constexpr header::DataDescription getDataDescriptionTimeSeries() { return header::DataDescription{"TIMESERIES"}; }
2424
static constexpr header::DataDescription getDataDescriptionTPCTimeSeriesTFId() { return header::DataDescription{"ITPCTSTFID"}; }
2525

26-
o2::framework::DataProcessorSpec getTPCTimeSeriesSpec(const bool disableWriter, const o2::base::Propagator::MatCorrType matType, const bool enableUnbinnedWriter, o2::dataformats::GlobalTrackID::mask_t src, bool useft0=false);
26+
o2::framework::DataProcessorSpec getTPCTimeSeriesSpec(const bool disableWriter, const o2::base::Propagator::MatCorrType matType, const bool enableUnbinnedWriter, o2::dataformats::GlobalTrackID::mask_t src, bool useft0 = false);
2727

2828
} // end namespace tpc
2929
} // end namespace o2

Detectors/TPC/workflow/src/TPCTimeSeriesSpec.cxx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -255,19 +255,19 @@ class TPCTimeSeries : public Task
255255
float chi2 = tpctofmatch.getChi2();
256256

257257
int mask = 0;
258-
if(isMultiHitX) { // 1nd bit on if multiple hits along X
258+
if (isMultiHitX) { // 1nd bit on if multiple hits along X
259259
mask += 1;
260260
}
261-
if(isMultiHitZ) { // 2nd bit on if multiple hits along Z
261+
if (isMultiHitZ) { // 2nd bit on if multiple hits along Z
262262
mask += 2;
263263
}
264-
if(fabs(dy) > 0.5) { // 3rd bit on if Y-residual too large
264+
if (fabs(dy) > 0.5) { // 3rd bit on if Y-residual too large
265265
mask += 4;
266266
}
267-
if(isMultiStripMatch) { // 4th bit on if two strips fired
267+
if (isMultiStripMatch) { // 4th bit on if two strips fired
268268
mask += 8;
269269
}
270-
if(chi2 > 3) { // 5th bit on if chi2 > 3
270+
if (chi2 > 3) { // 5th bit on if chi2 > 3
271271
mask += 16;
272272
}
273273
if (chi2 > 5) {

0 commit comments

Comments
 (0)