Skip to content

Commit 31d1795

Browse files
committed
First commit to refine layer segmentation
1 parent 2109283 commit 31d1795

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

Detectors/Upgrades/ALICE3/TRK/base/include/TRKBase/GeometryTGeo.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,10 @@ class GeometryTGeo : public o2::detectors::DetMatrixCache
4646
static const char* getTRKPetalDiskPattern() { return sPetalDiskName.c_str(); }
4747
static const char* getTRKPetalLayerPattern() { return sPetalLayerName.c_str(); }
4848
static const char* getTRKStavePattern() { return sStaveName.c_str(); }
49+
static const char* getTRKModulePattern() { return sModuleName.c_str(); }
4950
static const char* getTRKChipPattern() { return sChipName.c_str(); }
5051
static const char* getTRKSensorPattern() { return sSensorName.c_str(); }
52+
5153
static const char* getTRKWrapVolPattern() { return sWrapperVolumeName.c_str(); }
5254

5355
int getNumberOfChips() const { return mSize; }

Detectors/Upgrades/ALICE3/TRK/simulation/include/TRKSimulation/TRKLayer.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ class TRKLayer
4141

4242
TGeoVolume* createSensor(std::string type, double width = -1);
4343
TGeoVolume* createChip(std::string type, double width = -1);
44+
TGeoVolume* createModule(std::string type, double width = -1);
4445
TGeoVolume* createStave(std::string type, double width = -1);
4546
void createLayer(TGeoVolume* motherVolume);
4647

Detectors/Upgrades/ALICE3/TRK/simulation/src/TRKLayer.cxx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,10 @@ TGeoVolume* TRKLayer::createChip(std::string type, double width)
9494
return chipVol;
9595
}
9696

97+
TGeoVolume* TRKLayer::createModule(std::string type, double width)
98+
{
99+
}
100+
97101
TGeoVolume* TRKLayer::createStave(std::string type, double width)
98102
{
99103
TGeoMedium* medAir = gGeoManager->GetMedium("TRK_AIR$");

0 commit comments

Comments
 (0)