Skip to content

Commit f081ada

Browse files
committed
Fix: implement requested changes
1 parent bd9dfdc commit f081ada

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

Detectors/TPC/qc/src/Clusters.cxx

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -157,12 +157,10 @@ void Clusters::reset()
157157
//______________________________________________________________________________
158158
o2::tpc::CalPad Clusters::getOccupancy(int nHBFPerTF)
159159
{
160-
o2::tpc::CalPad Occupancy = mNClusters;
161-
Occupancy /= float(mProcessedTFs * (o2::constants::lhc::LHCMaxBunches * nHBFPerTF) / float(o2::tpc::ParameterElectronics::TIMEBININBC));
162-
return Occupancy;
163-
;
160+
o2::tpc::CalPad occupancy = mNClusters;
161+
occupancy /= float(mProcessedTFs * (o2::constants::lhc::LHCMaxBunches * nHBFPerTF) / float(o2::tpc::ParameterElectronics::TIMEBININBC));
162+
return occupancy;
164163
}
165-
166164
//______________________________________________________________________________
167165
void Clusters::merge(Clusters& clusters)
168166
{

0 commit comments

Comments
 (0)