File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Detectors/Upgrades/ALICE3/FD Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -23,15 +23,15 @@ namespace fd
2323{
2424struct Constants {
2525 static constexpr unsigned int nsect = 8 ;
26- static constexpr unsigned int nringsA = 3 ;
26+ static constexpr unsigned int nringsA = 5 ;
2727 static constexpr unsigned int nringsC = 6 ;
2828
2929 static constexpr float etaMax = 7 .0f ;
3030 static constexpr float etaMinC = 4 .0f ;
3131 static constexpr float etaMinA = 5 .0f ;
3232
33- static constexpr unsigned int nringsA_noFCT = 5 ;
34- static constexpr float etaMinA_noFCT = 4 .0f ;
33+ static constexpr unsigned int nringsA_withMG = 3 ;
34+ static constexpr float etaMinA_withMG = 5 .0f ;
3535};
3636
3737} // namespace fd
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ struct FDBaseParam : public o2::conf::ConfigurableParamHelper<FDBaseParam> {
2626 float zmodC = -1850 .0f ;
2727 float dzscint = 4 .0f ;
2828
29- bool noFCT = false ;
29+ bool withMG = false ; // modified geometry
3030
3131 O2ParamDef (FDBaseParam, " FDBase" );
3232};
Original file line number Diff line number Diff line change @@ -63,9 +63,9 @@ Detector::Detector(bool active)
6363
6464 auto & baseParam = FDBaseParam::Instance ();
6565
66- if (baseParam.noFCT ) {
67- mNumberOfRingsA = Constants::nringsA_noFCT ;
68- mEtaMinA = Constants::etaMinA_noFCT ;
66+ if (baseParam.withMG ) {
67+ mNumberOfRingsA = Constants::nringsA_withMG ;
68+ mEtaMinA = Constants::etaMinA_withMG ;
6969 } else {
7070 mNumberOfRingsA = Constants::nringsA;
7171 mEtaMinA = Constants::etaMinA;
You can’t perform that action at this time.
0 commit comments