We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd9dfdc commit f081adaCopy full SHA for f081ada
1 file changed
Detectors/TPC/qc/src/Clusters.cxx
@@ -157,12 +157,10 @@ void Clusters::reset()
157
//______________________________________________________________________________
158
o2::tpc::CalPad Clusters::getOccupancy(int nHBFPerTF)
159
{
160
- o2::tpc::CalPad Occupancy = mNClusters;
161
- Occupancy /= float(mProcessedTFs * (o2::constants::lhc::LHCMaxBunches * nHBFPerTF) / float(o2::tpc::ParameterElectronics::TIMEBININBC));
162
- return Occupancy;
163
- ;
+ o2::tpc::CalPad occupancy = mNClusters;
+ occupancy /= float(mProcessedTFs * (o2::constants::lhc::LHCMaxBunches * nHBFPerTF) / float(o2::tpc::ParameterElectronics::TIMEBININBC));
+ return occupancy;
164
}
165
-
166
167
void Clusters::merge(Clusters& clusters)
168
0 commit comments