diff --git a/Detectors/Upgrades/ITS3/simulation/include/ITS3Simulation/ITS3Layer.h b/Detectors/Upgrades/ITS3/simulation/include/ITS3Simulation/ITS3Layer.h index 86879cae24646..ad2bb1c15f1fb 100644 --- a/Detectors/Upgrades/ITS3/simulation/include/ITS3Simulation/ITS3Layer.h +++ b/Detectors/Upgrades/ITS3/simulation/include/ITS3Simulation/ITS3Layer.h @@ -47,7 +47,7 @@ class ITS3Layer : public TObject void createLayer(TGeoVolume* motherVolume, double radiusBetweenLayer); void createLayerWithDeadZones(TGeoVolume* motherVolume, double radiusBetweenLayer); void create4thLayer(TGeoVolume* motherVolume); - void createCarbonFoamStructure(TGeoVolume* motherVolume, double deltaR, bool fourthLayer=false); + void createCarbonFoamStructure(TGeoVolume* motherVolume, double deltaR, bool fourthLayer = false); void setChipThick(double thick) { mChipThickness = thick; } void setLayerRadius(double radius) { mRadius = radius; } diff --git a/Detectors/Upgrades/ITS3/simulation/src/ITS3Layer.cxx b/Detectors/Upgrades/ITS3/simulation/src/ITS3Layer.cxx index bcc2a6139779a..d164d9604f73c 100644 --- a/Detectors/Upgrades/ITS3/simulation/src/ITS3Layer.cxx +++ b/Detectors/Upgrades/ITS3/simulation/src/ITS3Layer.cxx @@ -275,7 +275,7 @@ void ITS3Layer::create4thLayer(TGeoVolume* motherVolume) volQuarterLayer[iEl] = new TGeoVolume(names[iEl].data(), quarterLayer[iEl][0], med); volQuarterLayer[iEl]->SetUniqueID(mChipTypeID); if (iEl == 4) { - //createCarbonFoamStructure(volQuarterLayer[iEl], 0., true); + // createCarbonFoamStructure(volQuarterLayer[iEl], 0., true); volQuarterLayer[iEl]->SetVisibility(true); volQuarterLayer[iEl]->SetLineColor(kGray + 2); } else if (iEl == 1) { diff --git a/Detectors/Upgrades/ITS3/workflow/src/ClustererSpec.cxx b/Detectors/Upgrades/ITS3/workflow/src/ClustererSpec.cxx index b19fa048c7908..e6c9b5bc4b910 100644 --- a/Detectors/Upgrades/ITS3/workflow/src/ClustererSpec.cxx +++ b/Detectors/Upgrades/ITS3/workflow/src/ClustererSpec.cxx @@ -72,7 +72,7 @@ void ClustererDPL::init(InitContext& ic) void ClustererDPL::run(ProcessingContext& pc) { - //updateTimeDependentParams(pc); + // updateTimeDependentParams(pc); auto digits = pc.inputs().get>("digits"); auto rofs = pc.inputs().get>("ROframes");