1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
|
/****************************************************************************
*
* This class is obsolete! Use PPSAlignmentConfiguration instead.
*
* Authors:
* - Jan Kašpar
* - Mateusz Kocot
*
****************************************************************************/
#include "CondFormats/PPSObjects/interface/PPSAlignmentConfig.h"
#include <iostream>
#include <cmath>
#include <iomanip>
// -------------------------------- PPSAlignmentConfig getters --------------------------------
const std::vector<std::string> &PPSAlignmentConfig::sequence() const { return sequence_; }
const std::string &PPSAlignmentConfig::resultsDir() const { return resultsDir_; }
const SectorConfig &PPSAlignmentConfig::sectorConfig45() const { return sectorConfig45_; }
const SectorConfig &PPSAlignmentConfig::sectorConfig56() const { return sectorConfig56_; }
double PPSAlignmentConfig::x_ali_sh_step() const { return x_ali_sh_step_; }
double PPSAlignmentConfig::y_mode_sys_unc() const { return y_mode_sys_unc_; }
double PPSAlignmentConfig::chiSqThreshold() const { return chiSqThreshold_; }
double PPSAlignmentConfig::y_mode_unc_max_valid() const { return y_mode_unc_max_valid_; }
double PPSAlignmentConfig::y_mode_max_valid() const { return y_mode_max_valid_; }
double PPSAlignmentConfig::maxRPTracksSize() const { return maxRPTracksSize_; }
double PPSAlignmentConfig::n_si() const { return n_si_; }
const std::map<unsigned int, std::vector<PointErrors>> &PPSAlignmentConfig::matchingReferencePoints() const {
return matchingReferencePoints_;
}
const std::map<unsigned int, SelectionRange> &PPSAlignmentConfig::matchingShiftRanges() const {
return matchingShiftRanges_;
}
const std::map<unsigned int, SelectionRange> &PPSAlignmentConfig::alignment_x_meth_o_ranges() const {
return alignment_x_meth_o_ranges_;
}
unsigned int PPSAlignmentConfig::fitProfileMinBinEntries() const { return fitProfileMinBinEntries_; }
unsigned int PPSAlignmentConfig::fitProfileMinNReasonable() const { return fitProfileMinNReasonable_; }
unsigned int PPSAlignmentConfig::methOGraphMinN() const { return methOGraphMinN_; }
double PPSAlignmentConfig::methOUncFitRange() const { return methOUncFitRange_; }
const std::map<unsigned int, SelectionRange> &PPSAlignmentConfig::alignment_x_relative_ranges() const {
return alignment_x_relative_ranges_;
}
unsigned int PPSAlignmentConfig::nearFarMinEntries() const { return nearFarMinEntries_; }
const std::map<unsigned int, SelectionRange> &PPSAlignmentConfig::alignment_y_ranges() const {
return alignment_y_ranges_;
}
unsigned int PPSAlignmentConfig::modeGraphMinN() const { return modeGraphMinN_; }
unsigned int PPSAlignmentConfig::multSelProjYMinEntries() const { return multSelProjYMinEntries_; }
const Binning &PPSAlignmentConfig::binning() const { return binning_; }
// -------------------------------- PPSAlignmentConfig setters --------------------------------
void PPSAlignmentConfig::setSequence(std::vector<std::string> &sequence) { sequence_ = sequence; }
void PPSAlignmentConfig::setResultsDir(std::string &resultsDir) { resultsDir_ = resultsDir; }
void PPSAlignmentConfig::setSectorConfig45(SectorConfig §orConfig45) { sectorConfig45_ = sectorConfig45; }
void PPSAlignmentConfig::setSectorConfig56(SectorConfig §orConfig56) { sectorConfig56_ = sectorConfig56; }
void PPSAlignmentConfig::setX_ali_sh_step(double x_ali_sh_step) { x_ali_sh_step_ = x_ali_sh_step; }
void PPSAlignmentConfig::setY_mode_sys_unc(double y_mode_sys_unc) { y_mode_sys_unc_ = y_mode_sys_unc; }
void PPSAlignmentConfig::setChiSqThreshold(double chiSqThreshold) { chiSqThreshold_ = chiSqThreshold; }
void PPSAlignmentConfig::setY_mode_unc_max_valid(double y_mode_unc_max_valid) {
y_mode_unc_max_valid_ = y_mode_unc_max_valid;
}
void PPSAlignmentConfig::setY_mode_max_valid(double y_mode_max_valid) { y_mode_max_valid_ = y_mode_max_valid; }
void PPSAlignmentConfig::setMaxRPTracksSize(unsigned int maxRPTracksSize) { maxRPTracksSize_ = maxRPTracksSize; }
void PPSAlignmentConfig::setN_si(double n_si) { n_si_ = n_si; }
void PPSAlignmentConfig::setMatchingReferencePoints(
std::map<unsigned int, std::vector<PointErrors>> &matchingReferencePoints) {
matchingReferencePoints_ = matchingReferencePoints;
}
void PPSAlignmentConfig::setMatchingShiftRanges(std::map<unsigned int, SelectionRange> &matchingShiftRanges) {
matchingShiftRanges_ = matchingShiftRanges;
}
void PPSAlignmentConfig::setAlignment_x_meth_o_ranges(
std::map<unsigned int, SelectionRange> &alignment_x_meth_o_ranges) {
alignment_x_meth_o_ranges_ = alignment_x_meth_o_ranges;
}
void PPSAlignmentConfig::setFitProfileMinBinEntries(unsigned int fitProfileMinBinEntries) {
fitProfileMinBinEntries_ = fitProfileMinBinEntries;
}
void PPSAlignmentConfig::setFitProfileMinNReasonable(unsigned int fitProfileMinNReasonable) {
fitProfileMinNReasonable_ = fitProfileMinNReasonable;
}
void PPSAlignmentConfig::setMethOGraphMinN(unsigned int methOGraphMinN) { methOGraphMinN_ = methOGraphMinN; }
void PPSAlignmentConfig::setMethOUncFitRange(double methOUncFitRange) { methOUncFitRange_ = methOUncFitRange; }
void PPSAlignmentConfig::setAlignment_x_relative_ranges(
std::map<unsigned int, SelectionRange> &alignment_x_relative_ranges) {
alignment_x_relative_ranges_ = alignment_x_relative_ranges;
}
void PPSAlignmentConfig::setNearFarMinEntries(unsigned int nearFarMinEntries) {
nearFarMinEntries_ = nearFarMinEntries;
}
void PPSAlignmentConfig::setAlignment_y_ranges(std::map<unsigned int, SelectionRange> &alignment_y_ranges) {
alignment_y_ranges_ = alignment_y_ranges;
}
void PPSAlignmentConfig::setModeGraphMinN(unsigned int modeGraphMinN) { modeGraphMinN_ = modeGraphMinN; }
void PPSAlignmentConfig::setMultSelProjYMinEntries(unsigned int multSelProjYMinEntries) {
multSelProjYMinEntries_ = multSelProjYMinEntries;
}
void PPSAlignmentConfig::setBinning(Binning &binning) { binning_ = binning; }
// -------------------------------- << operators --------------------------------
std::ostream &operator<<(std::ostream &os, RPConfig &rc) {
os << std::fixed << std::setprecision(3);
os << " " << rc.name_ << ", id = " << rc.id_ << ", position = " << rc.position_ << ":\n";
os << " slope = " << rc.slope_ << ", sh_x = " << rc.sh_x_ << "\n";
os << " x_min_fit_mode = " << rc.x_min_fit_mode_ << ", x_max_fit_mode = " << rc.x_max_fit_mode_ << "\n";
os << " y_max_fit_mode = " << rc.y_max_fit_mode_ << "\n";
os << " y_cen_add = " << rc.y_cen_add_ << ", y_width_mult = " << rc.y_width_mult_ << "\n";
os << std::setprecision(2);
os << " x slices: min = " << rc.x_slice_min_ << ", w = " << rc.x_slice_w_ << ", n = " << rc.x_slice_n_;
return os;
}
std::ostream &operator<<(std::ostream &os, SectorConfig &sc) {
os << std::fixed << std::setprecision(3);
os << sc.name_ << ":\n";
os << sc.rp_N_ << "\n" << sc.rp_F_ << "\n";
os << std::setprecision(3);
os << " slope = " << sc.slope_ << "\n";
os << " cut_h: apply = " << sc.cut_h_apply_ << ", a = " << sc.cut_h_a_ << ", c = " << sc.cut_h_c_
<< ", si = " << sc.cut_h_si_ << "\n";
os << " cut_v: apply = " << sc.cut_v_apply_ << ", a = " << sc.cut_v_a_ << ", c = " << sc.cut_v_c_
<< ", si = " << sc.cut_v_si_ << "\n";
return os;
}
std::ostream &operator<<(std::ostream &os, Binning &b) {
os << " bin_size_x = " << b.bin_size_x_ << ", n_bins_x = " << b.n_bins_x_ << "\n";
os << " pixel_x_offset = " << b.pixel_x_offset_ << "\n";
os << " n_bins_y = " << b.n_bins_y_ << ", y_min = " << b.y_min_ << ", y_max = " << b.y_max_;
return os;
}
std::ostream &operator<<(std::ostream &os, PPSAlignmentConfig c) {
os << "* sequence\n";
for (unsigned int i = 0; i < c.sequence_.size(); i++) {
os << " " << i + 1 << ": " << c.sequence_[i] << "\n";
}
os << "\n";
if (c.resultsDir_.empty()) {
os << "* no results file\n\n";
} else {
os << "* results file directory:\n";
os << " " << c.resultsDir_ << "\n\n";
}
os << "* " << c.sectorConfig45_ << "\n\n";
os << "* " << c.sectorConfig56_ << "\n\n";
std::map<unsigned int, std::string> rpTags = {{c.sectorConfig45_.rp_F_.id_, c.sectorConfig45_.rp_F_.name_},
{c.sectorConfig45_.rp_N_.id_, c.sectorConfig45_.rp_N_.name_},
{c.sectorConfig56_.rp_N_.id_, c.sectorConfig56_.rp_N_.name_},
{c.sectorConfig56_.rp_F_.id_, c.sectorConfig56_.rp_F_.name_}};
os << "* x alignment shift step\n";
os << " x_ali_sh_step = " << c.x_ali_sh_step_ << "\n\n";
os << "* mode graph parameters\n";
os << " y_mode_sys_unc = " << c.y_mode_sys_unc_ << "\n";
os << " chiSqThreshold = " << c.chiSqThreshold_ << "\n";
os << " y_mode_unc_max_valid = " << c.y_mode_unc_max_valid_ << "\n";
os << " y_mode_max_valid = " << c.y_mode_max_valid_ << "\n\n";
os << "* selection\n";
os << " max_RP_tracks_size = " << c.maxRPTracksSize_ << "\n\n";
os << "* cuts\n";
os << " n_si = " << c.n_si_ << "\n\n";
os << "* matching\n" << std::setprecision(3);
os << " shift ranges:\n";
for (const auto &p : c.matchingShiftRanges_)
os << " RP " << rpTags[p.first] << " (" << std::setw(3) << p.first << "): sh_min = " << p.second.x_min_
<< ", sh_max = " << p.second.x_max_ << "\n";
os << " reference points:\n";
for (const auto &pm : c.matchingReferencePoints_) {
os << " " << std::setw(3) << pm.first << ": ";
for (unsigned int i = 0; i < pm.second.size(); i++) {
const auto &p = pm.second[i];
if (i % 5 == 0 && i > 0)
os << "\n ";
os << "(" << std::setw(6) << p.x_ << " +- " << p.ex_ << ", " << std::setw(6) << p.y_ << " +- " << p.ey_ << "), ";
}
os << "\n";
}
os << "\n"
<< "* alignment_x_meth_o\n";
for (const auto &p : c.alignment_x_meth_o_ranges_)
os << " RP " << rpTags[p.first] << " (" << std::setw(3) << p.first << "): sh_min = " << p.second.x_min_
<< ", sh_max = " << p.second.x_max_ << "\n";
os << " fit_profile_min_bin_entries = " << c.fitProfileMinBinEntries_ << "\n";
os << " fit_profile_min_N_reasonable = " << c.fitProfileMinNReasonable_ << "\n";
os << " meth_o_graph_min_N = " << c.methOGraphMinN_ << "\n";
os << " meth_o_unc_fit_range = " << c.methOUncFitRange_ << "\n";
os << "\n"
<< "* alignment_x_relative\n";
for (const auto &p : c.alignment_x_relative_ranges_)
os << " RP " << rpTags[p.first] << " (" << std::setw(3) << p.first << "): sh_min = " << p.second.x_min_
<< ", sh_max = " << p.second.x_max_ << "\n";
os << " near_far_min_entries = " << c.nearFarMinEntries_ << "\n";
os << "\n"
<< "* alignment_y\n";
for (const auto &p : c.alignment_y_ranges_)
os << " RP " << rpTags[p.first] << " (" << std::setw(3) << p.first << "): sh_min = " << p.second.x_min_
<< ", sh_max = " << p.second.x_max_ << "\n";
os << " mode_graph_min_N = " << c.modeGraphMinN_ << "\n";
os << " mult_sel_proj_y_min_entries = " << c.multSelProjYMinEntries_ << "\n";
os << "\n"
<< "* binning\n";
os << c.binning_ << "\n";
return os;
}
|