Skip to content

Commit 7971e96

Browse files
committed
Please consider the following formatting changes
1 parent c9cc223 commit 7971e96

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

DataFormats/Reconstruction/include/ReconstructionDataFormats/MatchInfoTOF.h

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,11 @@ class MatchInfoTOF
8686
hasT0_1BCbefore = 0x1 << 8,
8787
hasT0_2BCbefore = 0x1 << 9 };
8888

89-
void setFT0Best(double val, float res = 200.) { mFT0Best = val; mFT0BestRes = res;}
89+
void setFT0Best(double val, float res = 200.)
90+
{
91+
mFT0Best = val;
92+
mFT0BestRes = res;
93+
}
9094
double getFT0Best() const { return mFT0Best; }
9195
float getFT0BestRes() const { return mFT0BestRes; }
9296

@@ -110,8 +114,8 @@ class MatchInfoTOF
110114
float mTgeant = 0.0; ///< geant time in MC
111115
double mT0true = 0.0; ///< t0true
112116

113-
double mFT0Best = 0.0; //< best info for collision time
114-
float mFT0BestRes = 200.0; //< resolution (in ps) of the best info for collision time
117+
double mFT0Best = 0.0; //< best info for collision time
118+
float mFT0BestRes = 200.0; //< resolution (in ps) of the best info for collision time
115119

116120
ClassDefNV(MatchInfoTOF, 9);
117121
};

Detectors/GlobalTracking/src/MatchTOF.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1722,7 +1722,7 @@ void MatchTOF::BestMatches(std::vector<o2::dataformats::MatchInfoTOFReco>& match
17221722

17231723
// estimate collision time using FT0 info if available
17241724
ULong64_t bclongtofCal = (matchingPair.getSignal() - 10000) * o2::tof::Geo::BC_TIME_INPS_INV;
1725-
double t0Best = bclongtofCal * o2::tof::Geo::BC_TIME_INPS; // here just BC
1725+
double t0Best = bclongtofCal * o2::tof::Geo::BC_TIME_INPS; // here just BC
17261726
float t0BestRes = 200;
17271727
if (FITRecPoints.size() > 0) {
17281728
int index = findFITIndex(bclongtofCal, FITRecPoints, mFirstTForbit);

0 commit comments

Comments
 (0)