Skip to content

Commit 3388830

Browse files
clang format fixing for PostProcessingLuminometer.cxx
1 parent b413f9d commit 3388830

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Modules/TOF/src/PostProcessingLuminometer.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ void PostProcessingLuminometer::update(Trigger t, framework::ServiceRegistryRef)
7777
if (mHistoOrbitsInTFEfficiency) {
7878
mHistoOrbitsInTFEfficiency->Reset();
7979
}
80-
if (mHistoLuminometer){
80+
if (mHistoLuminometer) {
8181
mHistoLuminometer->Reset();
8282
}
8383

@@ -122,13 +122,13 @@ void PostProcessingLuminometer::update(Trigger t, framework::ServiceRegistryRef)
122122
for (int j = 1; j <= moHActiveChannels->GetNbinsY(); j++) {
123123
counterAll++;
124124

125-
if (moHActiveChannels->GetBinContent(i,j)>mActiveThr){
125+
if (moHActiveChannels->GetBinContent(i, j) > mActiveThr) {
126126
counterActive++;
127127
}
128128
}
129129
}
130130

131-
activeCh = (float)counterActive/counterAll;
131+
activeCh = (float)counterActive / counterAll;
132132
} else {
133133
ILOG(Warning) << "Did not find MO " << mMOActiveChannels << " in path " << mCCDBPath << ENDM;
134134
}
@@ -142,7 +142,7 @@ void PostProcessingLuminometer::update(Trigger t, framework::ServiceRegistryRef)
142142
ILOG(Warning) << "Did not find MO " << mMOMultiplicity << " in path " << mCCDBPath << ENDM;
143143
}
144144

145-
mHistoLuminometer->Fill(hitMult/(activeCh*ROeff));
145+
mHistoLuminometer->Fill(hitMult / (activeCh * ROeff));
146146
}
147147

148148
void PostProcessingLuminometer::finalize(Trigger, framework::ServiceRegistryRef)

0 commit comments

Comments
 (0)