Skip to content

Commit 84943c2

Browse files
committed
geometry update
1 parent 69019f6 commit 84943c2

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

Detectors/Upgrades/ALICE3/FVD/base/include/FVDBase/FVDBaseParam.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ namespace o2
2020
namespace fvd
2121
{
2222
struct FVDBaseParam : public o2::conf::ConfigurableParamHelper<FVDBaseParam> {
23-
static constexpr int nCellA = 48;
24-
static constexpr int nCellC = 40; //24
25-
static constexpr int nRingsA = 6;
26-
static constexpr int nRingsC = 5; //3
23+
static constexpr int nCellA = 40; //24
24+
static constexpr int nCellC = 48;
25+
static constexpr int nRingsA = 5; //3
26+
static constexpr int nRingsC = 6;
2727

2828
static constexpr float dzScint = 4.;
29-
static constexpr float rRingsA[int(nCellA/8)+1] = {3.5, 14.8, 22.8, 37.3, 48.5, 59.8, 71.};
30-
static constexpr float rRingsC[int(nCellC/8)+1] = {3., 14.8, 26.6, 38.4, 50.2, 62.};
29+
static constexpr float rRingsA[int(nCellA/8)+1] = {3., 14.8, 26.6, 38.4, 50.2, 62.};
30+
static constexpr float rRingsC[int(nCellC/8)+1] = {3.5, 14.8, 22.8, 37.3, 48.5, 59.8, 71.};
3131

32-
static constexpr float zModA = 1950;
33-
static constexpr float zModC = -1700;
32+
static constexpr float zModA = 1700;
33+
static constexpr float zModC = -1950;
3434

3535
O2ParamDef(FVDBaseParam, "FVDBase");
3636
};

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ void Detector::buildModules()
225225
TGeoVolumeAssembly *vFVDA = buildModuleA();
226226
TGeoVolumeAssembly *vFVDC = buildModuleC();
227227

228-
vCave->AddNode(vFVDA, 0, new TGeoTranslation(0., 0., FVDBaseParam::zModA));
228+
vCave->AddNode(vFVDA, 1, new TGeoTranslation(0., 0., FVDBaseParam::zModA));
229229
vCave->AddNode(vFVDC, 1, new TGeoTranslation(0., 0., FVDBaseParam::zModC));
230230
}
231231

0 commit comments

Comments
 (0)