39 static constexpr int sampaMapping[10] = {0, 0, 1, 1, 2, 3, 3, 4, 4, 2};
40 static constexpr int channelOffset[10] = {0, 16, 0, 16, 0, 0, 16, 0, 16, 16};
41 const int regionIter = cruID % 2;
43 const int istreamm = ((hwChannel % 10) / 2);
44 const int partitionStream = istreamm + regionIter * 5;
45 const int sampaOnFEC = sampaMapping[partitionStream];
46 const int channel = (hwChannel % 2) + 2 * (hwChannel / 10);
47 const int channelOnSAMPA = channel + channelOffset[partitionStream];
49 return {sampaOnFEC, channelOnSAMPA};
57 const int sampaMapping[10] = {0, 0, 1, 1, 2, 3, 3, 4, 4, 2};
58 const int channelOffset[10] = {0, 16, 0, 16, 0, 0, 16, 0, 16, 16};
59 const int regionIter = cruID % 2;
61 for (std::size_t ichannel = 0; ichannel < 80; ++ichannel) {
62 const int istreamm = ((ichannel % 10) / 2);
63 const int partitionStream = istreamm + regionIter * 5;
64 const int sampaOnFEC = sampaMapping[partitionStream];
65 const int channel = (ichannel % 2) + 2 * (ichannel / 10);
66 const int channelOnSAMPA = channel + channelOffset[partitionStream];
69 printf(
"%4zu %4d %4d : %4zu %s\n", outch, sampaOnFEC, channelOnSAMPA, ichannel, (outch != ichannel) ?
"============" :
"");
81 std::unique_ptr<TFile> tFile1(TFile::Open(file1.data()));
82 std::unique_ptr<TFile> tFile2(TFile::Open(file2.data()));
85 tFile1->GetObject(objName.data(), calPad1);
86 tFile2->GetObject(objName.data(), calPad2);
88 for (
size_t iroc = 0; iroc < calPad1->getData().
size(); ++iroc) {
89 const auto& calArray1 = calPad1->getCalArray(iroc);
90 const auto& calArray2 = calPad2->getCalArray(iroc);
92 if (!(std::abs(calArray1.getSum() + calArray2.getSum()) > 0)) {
96 for (
size_t ipad = 0; ipad < calArray1.getData().
size(); ++ipad) {
97 const auto val1 = calArray1.getValue(ipad);
98 const auto val2 = calArray2.getValue(ipad);
100 if (std::abs(val2 - val1) >= 0.25) {
101 printf(
"%2zu %5zu : %.5f - %.5f = %.2f\n", iroc, ipad, val2, val1, val2 - val1);
107std::unordered_map<std::string, CalPad>
cru_calib_helpers::preparePedestalFiles(
const CalPad& pedestals,
const CalPad& noise, std::vector<float> sigmaNoiseROCType, std::vector<float> minADCROCType,
float pedestalOffset,
bool onlyFilled,
bool maskBad,
float noisyChannelThreshold,
float sigmaNoiseNoisyChannels,
float badChannelThreshold,
bool fixedSize)
111 auto expandVector = [](std::vector<float>&
vec,
const std::string
name) {
112 if (
vec.size() == 1) {
114 std::fill_n(&
vec[1], 3,
vec[0]);
115 }
else if (
vec.size() == 2) {
117 std::fill_n(&
vec[2], 2,
vec[1]);
118 }
else if (
vec.size() != 4) {
119 LOGP(fatal,
"{} definition must be either one value for all ROC types, or {{IROC, OROC}}, or {{IROC, OROC1, OROC2, OROC3}}",
name);
121 LOGP(info,
"Using {} = {{{}}}",
name, utils::elementsToString(
vec));
124 expandVector(sigmaNoiseROCType,
"sigmaNoiseROCType");
125 expandVector(minADCROCType,
"minADCROCType");
127 std::unordered_map<std::string, CalPad> pedestalsThreshold;
128 pedestalsThreshold[
"Pedestals"] =
CalPad(
"Pedestals");
129 pedestalsThreshold[
"ThresholdMap"] =
CalPad(
"ThresholdMap");
130 pedestalsThreshold[
"PedestalsPhys"] =
CalPad(
"Pedestals");
131 pedestalsThreshold[
"ThresholdMapPhys"] =
CalPad(
"ThresholdMap");
134 for (
size_t iroc = 0; iroc < pedestals.
getData().
size(); ++iroc) {
137 const auto& rocPedestal = pedestals.
getCalArray(iroc);
140 const int padOffset =
roc.isOROC() ? mapper.getPadsInIROC() : 0;
141 const auto& traceLengths =
roc.isIROC() ? mapper.getTraceLengthsIROC() : mapper.getTraceLengthsOROC();
144 if (!(std::abs(rocPedestal.getSum() + rocNoise.getSum()) > 0)) {
149 for (
size_t ipad = 0; ipad < rocPedestal.getData().
size(); ++ipad) {
150 const int globalPad = ipad + padOffset;
151 const FECInfo& fecInfo = mapper.fecInfo(globalPad);
152 const CRU cru = mapper.getCRU(
roc.getSector(), globalPad);
153 const uint32_t region = cru.
region();
154 const int cruID = cru.
number();
161 const int fecOffset = (nFECs + 1) / 2;
165 const int rocType =
roc.isIROC() ? 0 : cru.
partition() - 1;
166 const float sigmaNoise = sigmaNoiseROCType[rocType];
167 const float minADC = minADCROCType[rocType];
169 const auto traceLength = traceLengths[ipad];
171 float pedestal = rocPedestal.getValue(ipad);
172 if ((pedestal > 0) && (pedestalOffset > pedestal)) {
173 LOGP(warning,
"ROC: {:2}, pad: {:3} -- pedestal offset {:.2f} larger than the pedestal value {:.2f}. Pedestal and noise will be set to 0", iroc, ipad, pedestalOffset, pedestal);
175 pedestal -= pedestalOffset;
178 float noise = std::abs(rocNoise.getValue(ipad));
179 const float noiseCorr = noise - (0.847601 + 0.031514 * traceLength);
180 if ((pedestal <= 0) || (pedestal > 150) || (noise <= 0) || (noise > 50)) {
181 LOGP(info,
"Bad pedestal or noise value in ROC {:2}, CRU {:3}, fec in CRU: {:2}, SAMPA: {}, channel: {:2}, pedestal: {:.4f}, noise {:.4f}", iroc, cruID, fecInPartition, sampa, sampaChannel, pedestal, noise);
185 LOGP(info,
", they will be masked using pedestal value {:.0f} and noise {:.0f}", pedestal, noise);
187 LOGP(info,
", setting both to 0");
192 float threshold = (noise > 0) ? std::max(sigmaNoise * noise, minADC) : 0;
193 threshold = std::min(threshold, 1023.f);
194 float thresholdHighNoise = (noiseCorr > noisyChannelThreshold) ? std::max(sigmaNoiseNoisyChannels * noise, minADC) : threshold;
195 thresholdHighNoise = std::min(thresholdHighNoise, 1023.f);
197 float pedestalHighNoise = pedestal;
198 if (noiseCorr > badChannelThreshold) {
199 pedestalHighNoise = 1023;
200 thresholdHighNoise = 1023;
203 const int hwChannel =
getHWChannel(sampa, sampaChannel, region % 2);
217 pedestalsThreshold[
"Pedestals"].getCalArray(iroc).setValue(ipad, pedestal);
218 pedestalsThreshold[
"ThresholdMap"].getCalArray(iroc).setValue(ipad, threshold);
219 pedestalsThreshold[
"PedestalsPhys"].getCalArray(iroc).setValue(ipad, pedestalHighNoise);
220 pedestalsThreshold[
"ThresholdMapPhys"].getCalArray(iroc).setValue(ipad, thresholdHighNoise);
228 return pedestalsThreshold;
237 for (
size_t iroc = 0; iroc < calPad.
getData().
size(); ++iroc) {
242 const int padOffset =
roc.isOROC() ? mapper.getPadsInIROC() : 0;
245 if (!(std::abs(calRoc.getSum()) > 0)) {
250 for (
size_t ipad = 0; ipad < calRoc.getData().
size(); ++ipad) {
251 const int globalPad = ipad + padOffset;
252 const FECInfo& fecInfo = mapper.fecInfo(globalPad);
253 const CRU cru = mapper.getCRU(
roc.getSector(), globalPad);
254 const uint32_t region = cru.
region();
255 const int cruID = cru.
number();
261 const int fecOffset = (nFECs + 1) / 2;
263 const int dataWrapperID = fecInPartition >= fecOffset;
264 const int globalLinkID = (fecInPartition % fecOffset) + dataWrapperID * 12;
266 const int hwChannel =
getHWChannel(sampa, sampaChannel, region % 2);
268 const auto value = calRoc.getValue(ipad);
std::unordered_map< std::string, CalPad > preparePedestalFiles(const CalPad &pedestals, const CalPad &noise, std::vector< float > sigmaNoiseROCType={3, 3, 3, 3}, std::vector< float > minADCROCType={2, 2, 2, 2}, float pedestalOffset=0, bool onlyFilled=false, bool maskBad=true, float noisyChannelThreshold=1.5, float sigmaNoiseNoisyChannels=4, float badChannelThreshold=6, bool fixedSize=false)