Skip to content

Commit e38454f

Browse files
committed
Please consider the following formatting changes
1 parent f3c1995 commit e38454f

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

Detectors/Upgrades/ALICE3/FVD/simulation/src/Detector.cxx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Detector::Detector(bool active)
5757
auto& baseParam = FVDBaseParam::Instance();
5858
mNumberOfSectors = baseParam.nsect;
5959

60-
mDzScint = baseParam.dzscint/2;
60+
mDzScint = baseParam.dzscint / 2;
6161

6262
mRingRadiiA = baseParam.ringsA;
6363
mRingRadiiC = baseParam.ringsC;
@@ -120,7 +120,7 @@ bool Detector::ProcessHits(FairVolume* vol)
120120

121121
auto stack = (o2::data::Stack*)fMC->GetStack();
122122

123-
//int cellId = vol->getVolumeId();
123+
// int cellId = vol->getVolumeId();
124124

125125
// Check track status to define when hit is started and when it is stopped
126126
bool startHit = false, stopHit = false;
@@ -278,8 +278,8 @@ void Detector::buildModules()
278278
TGeoVolumeAssembly* vFVDA = buildModuleA();
279279
TGeoVolumeAssembly* vFVDC = buildModuleC();
280280

281-
vCave->AddNode(vFVDA, 1, new TGeoTranslation(0., 0., mZmodA/* - mDzScint/2.*/));
282-
vCave->AddNode(vFVDC, 1, new TGeoTranslation(0., 0., mZmodC/* + mDzScint/2.*/));
281+
vCave->AddNode(vFVDA, 1, new TGeoTranslation(0., 0., mZmodA /* - mDzScint/2.*/));
282+
vCave->AddNode(vFVDC, 1, new TGeoTranslation(0., 0., mZmodC /* + mDzScint/2.*/));
283283
}
284284

285285
TGeoVolumeAssembly* Detector::buildModuleA()
@@ -355,7 +355,6 @@ void Detector::defineSensitiveVolumes()
355355
LOG(info) << "Adding FVD Sensitive Volume => " << v->GetName();
356356
AddSensitiveVolume(v);
357357
}
358-
359358
}
360359

361360
int Detector::getChannelId(TVector3 vec)

0 commit comments

Comments
 (0)