Skip to content

Commit 51ee5ed

Browse files
committed
[ITS, ITS3] Implement Dead Zones and Carbon Foam for ITS3 Inner Barrel
1 parent eee4ffd commit 51ee5ed

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

Detectors/Upgrades/IT3/simulation/src/Detector.cxx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
#include "SimulationDataFormat/TrackReference.h"
2424

2525
// FairRoot includes
26-
#include "FairDetector.h" // for FairDetector
26+
#include "FairDetector.h" // for FairDetector
2727
#include <fairlogger/Logger.h> // for LOG, LOG_IF
28-
#include "FairRootManager.h" // for FairRootManager
29-
#include "FairRun.h" // for FairRun
30-
#include "FairRuntimeDb.h" // for FairRuntimeDb
31-
#include "FairVolume.h" // for FairVolume
28+
#include "FairRootManager.h" // for FairRootManager
29+
#include "FairRun.h" // for FairRun
30+
#include "FairRuntimeDb.h" // for FairRuntimeDb
31+
#include "FairVolume.h" // for FairVolume
3232
#include "FairRootManager.h"
3333

3434
#include "TGeoManager.h" // for TGeoManager, gGeoManager

Detectors/Upgrades/IT3/simulation/src/ITS3Layer.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ void ITS3Layer::createLayer(TGeoVolume* motherVolume)
4343

4444
double rmin = mRadius;
4545
double rmax = rmin + mSensorThickness;
46-
double radiusBetweenLayer = 0.6 - mSensorThickness; //FIXME: hard coded distance between layers
46+
double radiusBetweenLayer = 0.6 - mSensorThickness; // FIXME: hard coded distance between layers
4747

4848
const int nElements = 7;
4949
std::string names[nElements];
@@ -113,7 +113,7 @@ void ITS3Layer::createLayerWithDeadZones(TGeoVolume* motherVolume)
113113
double rmed = (rmax + rmin) / 2;
114114
// width of sensors of layers is calculated from r and chips' widths
115115
double widthSensor = (TMath::Pi() * rmed - (mNumSubSensorsHalfLayer - 2) * mMiddleChipWidth - 2 * mFringeChipWidth) / mNumSubSensorsHalfLayer;
116-
double radiusBetweenLayer = 0.6 - mSensorThickness; //FIXME: hard coded distance between layers
116+
double radiusBetweenLayer = 0.6 - mSensorThickness; // FIXME: hard coded distance between layers
117117

118118
const int nElements = 7;
119119
std::string names[nElements];
@@ -197,7 +197,7 @@ void ITS3Layer::createCarbonFoamStructure(TGeoVolume* motherVolume)
197197
TGeoMedium* medGlue = gGeoManager->GetMedium("IT3_IMPREG_FLEECE$");
198198

199199
double rmax = mRadius + mSensorThickness;
200-
double radiusBetweenLayer = 0.6 - mSensorThickness; //FIXME: hard coded distance between layers
200+
double radiusBetweenLayer = 0.6 - mSensorThickness; // FIXME: hard coded distance between layers
201201
double rmedFoam = rmax + radiusBetweenLayer / 2;
202202

203203
TGeoTranslation* transSemicircle[2];

0 commit comments

Comments
 (0)