Skip to content

Commit 3e9ba85

Browse files
committed
ALICE3-TRK: adjust ML/OT staves length according to the current geometry
1 parent ce53c4e commit 3e9ba85

File tree

1 file changed

+7
-5
lines changed
  • Detectors/Upgrades/ALICE3/TRK/base/include/TRKBase

1 file changed

+7
-5
lines changed

Detectors/Upgrades/ALICE3/TRK/base/include/TRKBase/Specs.h

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,16 +102,18 @@ constexpr int nCols{static_cast<int>(length / chip::pitchZ)};
102102

103103
namespace ML
104104
{
105-
constexpr double width{constants::moduleMLOT::width * 1}; // width of the stave
106-
constexpr double length{constants::moduleMLOT::length * 10}; // length of the stave
105+
constexpr double width{constants::moduleMLOT::width * 1}; // width of the stave
106+
// constexpr double length{constants::moduleMLOT::length * 10}; // length of the stave
107+
constexpr double length{124 * cm}; // length of the stave, hardcoded to fit the implemented geometry
107108
constexpr int nRows{static_cast<int>(width / constants::moduleMLOT::chip::pitchX)}; // number of rows in the stave
108109
constexpr int nCols{static_cast<int>(length / constants::moduleMLOT::chip::pitchZ)}; // number of columns in the stave
109110
} // namespace ML
110111

111112
namespace OT
112-
{ //// TODO: add shorter lenght of the stave of L4
113-
constexpr double width{moduleMLOT::width * 2}; // width of the stave
114-
constexpr double length{moduleMLOT::length * 20}; // length of the stave
113+
{
114+
constexpr double width{moduleMLOT::width * 2}; // width of the stave
115+
// constexpr double length{moduleMLOT::length * 20}; // length of the stave
116+
constexpr double length{258 * cm}; // length of the stave, hardcoded to fit the implemented geometry
115117
constexpr int nRows{static_cast<int>(width / moduleMLOT::chip::pitchX)}; // number of rows in the stave
116118
constexpr int nCols{static_cast<int>(length / moduleMLOT::chip::pitchZ)}; // number of columns in the stave
117119
} // namespace OT

0 commit comments

Comments
 (0)