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
3 changes: 2 additions & 1 deletion Detectors/Upgrades/ALICE3/Passive/src/Pipe.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,8 @@ void Alice3Pipe::ConstructGeometry()
// Add everything to the barrel
barrel->AddNode(pipeVolume, 1, new TGeoTranslation(0, 30.f, 0));

pipeVolume->SetLineColor(kGreen + 3);
pipeVolume->SetLineColor(37);
pipeVolume->SetTransparency(0);
}

void Alice3Pipe::createMaterials()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ class GeometryTGeo : public o2::detectors::DetMatrixCache
};
static const char* getTRKVolPattern() { return sVolumeName.c_str(); }
static const char* getTRKLayerPattern() { return sLayerName.c_str(); }
static const char* getTRKPetalAssemblyPattern() { return sPetalAssemblyName.c_str(); }
static const char* getTRKPetalPattern() { return sPetalName.c_str(); }
static const char* getTRKPetalDiskPattern() { return sPetalDiskName.c_str(); }
static const char* getTRKPetalLayerPattern() { return sPetalLayerName.c_str(); }
Expand Down Expand Up @@ -145,6 +146,7 @@ class GeometryTGeo : public o2::detectors::DetMatrixCache

static std::string sVolumeName;
static std::string sLayerName;
static std::string sPetalAssemblyName;
static std::string sPetalName;
static std::string sPetalDiskName;
static std::string sPetalLayerName;
Expand Down
Loading