19#include <fmt/format.h>
27int getStripId(
int deId,
int columnId,
int lineId,
int stripId,
int cathode)
29 return stripId | (cathode << 4) | (lineId << 5) | (columnId << 7) | (deId << 10);
32std::array<int, 4> GlobalMapper::getStripGeom(
int deId,
int columnId,
int lineId,
int stripId,
int cathode)
const
35 int offsetNB = 32 * columnId;
39 int pitch =
static_cast<int>(mMapping.
getStripSize(stripId, cathode, columnId, deId));
44 ypos += pitch * (16 * lineId + stripId);
50 xpos += pitch * stripId;
53 int nLines = lastLine - firstLine + 1;
54 ypos += 16 * firstLine;
55 ywidth = (nLines == 3) ? 48 : 64;
56 if (columnId == 6 && stripId >= 8) {
76 return {mScaleFactor * xpos, mScaleFactor * ypos, mScaleFactor * xwidth, mScaleFactor * ywidth};
79ExtendedMappingInfo GlobalMapper::buildExtendedInfo(
int deId,
int columnId,
int lineId,
int stripId,
int cathode)
const
81 ExtendedMappingInfo info;
82 std::array<std::string, 4> boards{
"12",
"34",
"56",
"78"};
83 info.id =
getStripId(deId, columnId, lineId, stripId, cathode);
85 int iline = (irpc == 5 && columnId == 0) ? lineId - 1 : lineId;
86 auto locId =
static_cast<int>(mCrateMapper.
deLocalBoardToRO(deId, columnId, lineId));
89 auto crateId = (locId >> 4) % 8;
90 auto locInCrate = (locId & 0xF);
93 info.columnId = columnId;
95 info.stripId = stripId;
96 info.cathode = cathode;
97 info.locIdDcs = fmt::format(
"{}{}{}{}", crateId,
side, (locInCrate >= 8 ?
"1" :
"0"), locInCrate);
98 info.locIdHw = fmt::format(
"{}{}C{}L{}B{}",
detparams::getChamber(deId) + 1,
side, columnId + 1, irpc + 1, boards[iline]);
99 auto geom = getStripGeom(deId, columnId, lineId, stripId, cathode);
102 info.xwidth = geom[2];
103 info.ywidth = geom[3];
109 std::vector<ExtendedMappingInfo> out;
115 for (
int istrip = 0; istrip < nStrips; ++istrip) {
116 auto info = buildExtendedInfo(ide, icol, firstLine, istrip, 1);
117 out.emplace_back(info);
121 for (
int iline = firstLine; iline <= lastLine; ++iline) {
122 for (
int istrip = 0; istrip < 16; ++istrip) {
123 auto info = buildExtendedInfo(ide, icol, iline, istrip, 0);
124 out.emplace_back(info);
134 std::map<int, std::vector<std::pair<int, int>>> out;
135 std::pair<int, int> tmp;
139 bool isCutLow = (iline != 0);
141 auto info = buildExtendedInfo(ide, icol, iline, 0, 0);
142 out[ide].emplace_back(info.xpos, info.ypos);
144 tmp = {info.xpos + info.xwidth, info.ypos};
148 info = buildExtendedInfo(ide, icol, iline, 15, 0);
149 out[ide].emplace_back(info.xpos, info.ypos + info.ywidth);
153 out[ide].emplace_back(info.xpos + info.xwidth, info.ypos + info.ywidth);
154 info = buildExtendedInfo(ide, 1, 3, 15, 0);
156 out[ide].emplace_back(info.xpos, info.ypos + info.ywidth);
159 info = buildExtendedInfo(ide, 6, 0, 15, 0);
160 out[ide].emplace_back(info.xpos + info.xwidth, info.ypos + info.ywidth);
162 info = buildExtendedInfo(ide, 6, 0, 0, 0);
163 out[ide].emplace_back(info.xpos + info.xwidth, info.ypos);
167 info = buildExtendedInfo(ide, 1, 0, 0, 0);
168 out[ide].emplace_back(info.xpos, info.ypos);
170 out[ide].emplace_back(tmp);
173 out[ide].emplace_back(out[ide].front());
Useful detector parameters for MID.
Useful geometrical parameters for MID.
uint8_t deLocalBoardToRO(uint8_t deId, uint8_t columnId, uint8_t lineId) const
Converts the LOC ID expressed in the offline convention into the readout convention.
std::map< int, std::vector< std::pair< int, int > > > buildDEGeom() const
Build the geometry for the Detection elements.
std::vector< ExtendedMappingInfo > buildStripsInfo() const
Build the strips info.
int getNStripsNBP(int column, int deId) const
int getFirstColumn(int deId) const
int getLastBoardBP(int column, int deId) const
int getFirstBoardBP(int column, int deId) const
double getStripSize(int strip, int cathode, int column, int deId) const
constexpr int NDetectionElements
Number of RPCs.
constexpr int NRPCLines
Number of RPC lines.
std::string getDEName(int deId)
bool isRightSide(int deId)
bool isShortRPC(int deId)
int getStripId(int deId, int columnId, int lineId, int stripId, int cathode)
Gets the unique strip ID.
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...