Skip to content

Commit f2b04d4

Browse files
committed
return to the previous choice
1 parent d80e3e7 commit f2b04d4

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Detectors/Upgrades/ALICE3/FD/base/include/FDBase/Constants.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ namespace fd
2323
{
2424
struct 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

Detectors/Upgrades/ALICE3/FD/base/include/FDBase/FDBaseParam.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
};

Detectors/Upgrades/ALICE3/FD/simulation/src/Detector.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)