Project
Loading...
Searching...
No Matches
GlobalMapper.cxx
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
16
18
19#include <fmt/format.h>
22
23namespace o2
24{
25namespace mid
26{
27int getStripId(int deId, int columnId, int lineId, int stripId, int cathode)
28{
29 return stripId | (cathode << 4) | (lineId << 5) | (columnId << 7) | (deId << 10);
30}
31
32std::array<int, 4> GlobalMapper::getStripGeom(int deId, int columnId, int lineId, int stripId, int cathode) const
33{
34 int irpc = detparams::getRPCLine(deId);
35 int offsetNB = 32 * columnId;
36 int offsetB = 32 * (2 * irpc - detparams::NRPCLines);
37 int xpos = offsetNB;
38 int ypos = offsetB;
39 int pitch = static_cast<int>(mMapping.getStripSize(stripId, cathode, columnId, deId));
40 int xwidth = pitch;
41 int ywidth = pitch;
42
43 if (cathode == 0) {
44 ypos += pitch * (16 * lineId + stripId);
45 xwidth = 32;
46 if (columnId == 6) {
47 xwidth += 16;
48 }
49 } else {
50 xpos += pitch * stripId;
51 int firstLine = mMapping.getFirstBoardBP(columnId, deId);
52 int lastLine = mMapping.getLastBoardBP(columnId, deId);
53 int nLines = lastLine - firstLine + 1;
54 ypos += 16 * firstLine;
55 ywidth = (nLines == 3) ? 48 : 64;
56 if (columnId == 6 && stripId >= 8) {
57 // The strip pitch for the previous strips was 4 cm
58 // while the one for this strip is 2 cm
59 // So we need to add 2 * 8 to the offset...
60 xpos += 8 * pitch;
61 }
62 }
63
64 if (geoparams::isShortRPC(deId) && columnId == 1) {
65 xpos += 16;
66 if (cathode == 0) {
67 xwidth = 16;
68 }
69 }
70
71 if (!detparams::isRightSide(deId)) {
72 xpos *= -1;
73 xwidth *= -1;
74 }
75
76 return {mScaleFactor * xpos, mScaleFactor * ypos, mScaleFactor * xwidth, mScaleFactor * ywidth};
77}
78
79ExtendedMappingInfo GlobalMapper::buildExtendedInfo(int deId, int columnId, int lineId, int stripId, int cathode) const
80{
81 ExtendedMappingInfo info;
82 std::array<std::string, 4> boards{"12", "34", "56", "78"};
83 info.id = getStripId(deId, columnId, lineId, stripId, cathode);
84 int irpc = detparams::getRPCLine(deId);
85 int iline = (irpc == 5 && columnId == 0) ? lineId - 1 : lineId;
86 auto locId = static_cast<int>(mCrateMapper.deLocalBoardToRO(deId, columnId, lineId));
87 info.locId = locId;
88 std::string side = detparams::isRightSide(deId) ? "R" : "L";
89 auto crateId = (locId >> 4) % 8;
90 auto locInCrate = (locId & 0xF);
91 info.rpc = detparams::getDEName(deId);
92 info.deId = deId;
93 info.columnId = columnId;
94 info.lineId = lineId;
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);
100 info.xpos = geom[0];
101 info.ypos = geom[1];
102 info.xwidth = geom[2];
103 info.ywidth = geom[3];
104 return info;
105}
106
107std::vector<ExtendedMappingInfo> GlobalMapper::buildStripsInfo() const
108{
109 std::vector<ExtendedMappingInfo> out;
110 for (int ide = 0; ide < o2::mid::detparams::NDetectionElements; ++ide) {
111 for (int icol = mMapping.getFirstColumn(ide); icol < 7; ++icol) {
112 int firstLine = mMapping.getFirstBoardBP(icol, ide);
113 int nStrips = mMapping.getNStripsNBP(icol, ide);
114 // NBP
115 for (int istrip = 0; istrip < nStrips; ++istrip) {
116 auto info = buildExtendedInfo(ide, icol, firstLine, istrip, 1);
117 out.emplace_back(info);
118 }
119 // BP
120 int lastLine = mMapping.getLastBoardBP(icol, ide);
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);
125 }
126 }
127 }
128 }
129 return out;
130}
131
132std::map<int, std::vector<std::pair<int, int>>> GlobalMapper::buildDEGeom() const
133{
134 std::map<int, std::vector<std::pair<int, int>>> out;
135 std::pair<int, int> tmp;
136 for (int ide = 0; ide < o2::mid::detparams::NDetectionElements; ++ide) {
137 int icol = mMapping.getFirstColumn(ide);
138 int iline = mMapping.getFirstBoardBP(icol, ide);
139 bool isCutLow = (iline != 0);
140 // (x1,y1)
141 auto info = buildExtendedInfo(ide, icol, iline, 0, 0);
142 out[ide].emplace_back(info.xpos, info.ypos);
143 if (isCutLow) {
144 tmp = {info.xpos + info.xwidth, info.ypos};
145 }
146 // (x1, y2)
147 iline = mMapping.getLastBoardBP(icol, ide);
148 info = buildExtendedInfo(ide, icol, iline, 15, 0);
149 out[ide].emplace_back(info.xpos, info.ypos + info.ywidth);
150 if (iline == 2) {
151 // Cut high
152 // (x1',y2)
153 out[ide].emplace_back(info.xpos + info.xwidth, info.ypos + info.ywidth);
154 info = buildExtendedInfo(ide, 1, 3, 15, 0);
155 // (x1',y2')
156 out[ide].emplace_back(info.xpos, info.ypos + info.ywidth);
157 }
158 // (x2,y2)
159 info = buildExtendedInfo(ide, 6, 0, 15, 0);
160 out[ide].emplace_back(info.xpos + info.xwidth, info.ypos + info.ywidth);
161 // (x2,y1)
162 info = buildExtendedInfo(ide, 6, 0, 0, 0);
163 out[ide].emplace_back(info.xpos + info.xwidth, info.ypos);
164 if (isCutLow) {
165 // Cut low
166 // (x1',y1')
167 info = buildExtendedInfo(ide, 1, 0, 0, 0);
168 out[ide].emplace_back(info.xpos, info.ypos);
169 // (x1',y1)
170 out[ide].emplace_back(tmp);
171 }
172 // (x1, y1)
173 out[ide].emplace_back(out[ide].front());
174 }
175 return out;
176}
177
178} // namespace mid
179} // namespace o2
Useful detector parameters for MID.
Useful geometrical parameters for MID.
Global mapper for MID.
uint32_t side
Definition RawData.h:0
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
Definition Mapping.cxx:159
int getFirstColumn(int deId) const
Definition Mapping.cxx:169
int getLastBoardBP(int column, int deId) const
Definition Mapping.cxx:188
int getFirstBoardBP(int column, int deId) const
Definition Mapping.cxx:178
double getStripSize(int strip, int cathode, int column, int deId) const
Definition Mapping.cxx:140
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 ...