We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 303c84f commit c3553cbCopy full SHA for c3553cb
Detectors/Upgrades/ALICE3/FD/simulation/src/Detector.cxx
@@ -310,7 +310,10 @@ TGeoVolumeAssembly* Detector::buildModuleA()
310
float phimax = dphiDeg * (ic + 1);
311
auto tbs = new TGeoTubeSeg("tbs", rmin, rmax, mDzScint, phimin, phimax);
312
auto nod = new TGeoVolume(nodeName.c_str(), tbs, medium);
313
- nod->SetLineColor(kRed);
+ if ((ir + ic) % 2 == 0)
314
+ nod->SetLineColor(kRed);
315
+ else
316
+ nod->SetLineColor(kRed - 7);
317
ring->AddNode(nod, cellId);
318
}
319
mod->AddNode(ring, ir + 1);
@@ -354,7 +357,10 @@ TGeoVolumeAssembly* Detector::buildModuleC()
354
357
355
358
356
359
- nod->SetLineColor(kBlue);
360
361
+ nod->SetLineColor(kBlue);
362
363
+ nod->SetLineColor(kBlue - 7);
364
365
366
0 commit comments