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
Original file line number Diff line number Diff line change
Expand Up @@ -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; }
Expand Down
2 changes: 1 addition & 1 deletion Detectors/Upgrades/ITS3/simulation/src/ITS3Layer.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion Detectors/Upgrades/ITS3/workflow/src/ClustererSpec.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ void ClustererDPL::init(InitContext& ic)

void ClustererDPL::run(ProcessingContext& pc)
{
//updateTimeDependentParams(pc);
// updateTimeDependentParams(pc);
auto digits = pc.inputs().get<gsl::span<o2::itsmft::Digit>>("digits");
auto rofs = pc.inputs().get<gsl::span<o2::itsmft::ROFRecord>>("ROframes");

Expand Down