You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MagnetType mMagType = MagnetType::AluminiumStabilizer; // Magnet type: as in MagnetType enum
44
-
MagnetAbsorberLayout mMagAbsLayout = o2::passive::MagnetAbsorberLayout::SteppedAbsorber; // Magnet and absorber layout: as in MagnetAbsorberLayout enum
49
+
MagnetType mMagType = MagnetType::AluminiumStabilizer; // Magnet type: as in MagnetType enum
50
+
MagnetLayout mMagnetLayout = o2::passive::MagnetLayout::MagStandardRadius; // Magnet layout: as in MagnetLayout enum
51
+
AbsorberLayout mAbsorberLayout = o2::passive::AbsorberLayout::AbsSteppedAbsorber; // Absorber layout: as in AbsorberLayout enum
case o2::passive::MagnetAbsorberLayout::StandardRadius:
124
-
// Defined in the header file
122
+
switch (passiveBaseParam.mMagnetLayout) {
123
+
case o2::passive::MagnetLayout::MagStandardRadius: // Values taken from https://indico.cern.ch/event/1516752/contributions/6598922/attachments/3148108/5593121/ALICE3_magnet_071025.pdf
124
+
mInnerWrapInnerRadius = 140.f; // cm Inner radius of the inner wrap (Aluminium stabilizer)
125
+
mInnerWrapThickness = 1.f; // cm
126
+
mCoilInnerRadius = 160.f; // cm
127
+
mCoilThickness = 0.3f; // cm
128
+
mRestMaterialRadius = 160.3f; // cm
129
+
mRestMaterialThickness = 6.8f; // cm
130
+
mOuterWrapInnerRadius = 180.f; // cm
131
+
mOuterWrapThickness = 3.f; // cm
132
+
mZLength = 750.f; // cm Length of the magnet (Z direction)
125
133
break;
126
-
case o2::passive::MagnetAbsorberLayout::SteppedAbsorber: // Ian absorber uses ReducedRadius magnet
127
-
case o2::passive::MagnetAbsorberLayout::ReducedRadius:
case o2::passive::MagnetLayout::MagThickRadius: // Values taken from https://indico.cern.ch/event/1516752/contributions/6598922/attachments/3148108/5593121/ALICE3_magnet_071025.pdf
146
+
mInnerWrapInnerRadius = 140.f; // cm Inner radius of the inner wrap (Aluminium stabilizer)
147
+
mInnerWrapThickness = 1.f; // cm
148
+
mCoilInnerRadius = 160.f; // cm
149
+
mCoilThickness = 0.3f; // cm
150
+
mRestMaterialRadius = 160.3f; // cm
151
+
mRestMaterialThickness = 6.8f; // cm
152
+
mOuterWrapInnerRadius = 200.f; // cm
153
+
mOuterWrapThickness = 3.f; // cm
154
+
mZLength = 750.f; // cm Length of the magnet (Z direction)
0 commit comments