Skip to content

Commit a96e652

Browse files
Fix formatting issues
2 parents b492c83 + a94f694 commit a96e652

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Detectors/Upgrades/ALICE3/FT3/simulation/src/FT3Layer.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ void FT3Layer::createLayer(TGeoVolume* motherVolume)
390390
std::string separationLayerName = "FT3SeparationLayer" + std::to_string(mDirection) + std::to_string(mLayerNumber);
391391

392392
TGeoMedium* medAir = gGeoManager->GetMedium("FT3_AIR$");
393-
TGeoTube* layer = new TGeoTube(mInnerRadius-0.1, mOuterRadius+0.1, 1.5); // Add a little additional room in radius; Try with 1.5 cm thickness
393+
TGeoTube* layer = new TGeoTube(mInnerRadius - 0.1, mOuterRadius + 0.1, 1.5); // Add a little additional room in radius; Try with 1.5 cm thickness
394394
TGeoVolume* layerVol = new TGeoVolume(mLayerName.c_str(), layer, medAir);
395395
layerVol->SetLineColor(kYellow + 2);
396396

Detectors/Upgrades/ALICE3/IOTOF/simulation/src/Layer.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ void ITOFLayer::createLayer(TGeoVolume* motherVolume)
159159
const double staveSizeY = mOuterRadius - mInnerRadius; // cm
160160
const double staveSizeZ = mZLength; // cm
161161
const double deltaForTilt = 0.5 * (std::sin(TMath::DegToRad() * mTiltAngle) * staveSizeX + std::cos(TMath::DegToRad() * mTiltAngle) * staveSizeY); // we increase the size of the layer to account for the tilt of the staves
162-
TGeoTube* layer = new TGeoTube(mInnerRadius - deltaForTilt, mOuterRadius + deltaForTilt + 0.1, mZLength / 2 );
162+
TGeoTube* layer = new TGeoTube(mInnerRadius - deltaForTilt, mOuterRadius + deltaForTilt + 0.1, mZLength / 2);
163163
TGeoVolume* layerVol = new TGeoVolume(mLayerName.c_str(), layer, medAir);
164164
setLayerStyle(layerVol);
165165

0 commit comments

Comments
 (0)