Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions Detectors/Upgrades/ALICE3/ECal/simulation/src/Detector.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,13 @@ void Detector::createGeometry()
ecalVol->SetLineColor(kCyan + 1);
ecalVol->SetTransparency(0);
vECal->AddNode(ecalVol, 1, nullptr);

// Buil the ecal endcap
TGeoTube* ecalEndcapShape = new TGeoTube("ECLECsh", 15.f, 160.f, 0.5 * (mOuterRadius - mInnerRadius));
TGeoVolume* ecalEndcapVol = new TGeoVolume("ECLEC", ecalEndcapShape, medPb);
ecalEndcapVol->SetLineColor(kCyan + 1);
ecalEndcapVol->SetTransparency(0);
vECal->AddNode(ecalEndcapVol, 1, new TGeoTranslation(0, 0, -450.f));
}

void Detector::Reset()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@ class TRKServices : public FairModule
kCSide = -1 };
// TRK services overview: three componenets
//
// ==================================================
// ============|| Outer ||============
// =========|| || Tracker || ||=========
// || ||======================|| ||
// || Inner + Middle ||
// || Tracker ||
// || ||======================|| ||
// =========|| || || ||========= ---> createDisksServices
// ============|| ||============ ---> createMiddleBarrelServices
// ================================================== ---> createOuterServices
// ===================================================
// ============|| Outer ||============
// =========|| || Tracker || ||=========
// || ||===||-------------||===|| ||
// || || Inner + Mid || ||
// || || Tracker || ||
// || ||===||-------------||===|| ||
// =========|| || || ||========= ---> createDisksServices
// ============|| ||============ ---> createMiddleBarrelServices
// =================================================== ---> createOuterServices
public:
TRKServices() = default;
TRKServices(float rMin, float zLength, float thickness);
Expand Down
Loading