CMS 3D CMS Logo

List of all members | Classes | Public Member Functions | Public Attributes
PPSAlignmentWorker::SectorData Struct Reference

Classes

struct  SlicePlots
 

Public Member Functions

void init (DQMStore::IBooker &iBooker, const PPSAlignmentConfig &cfg, const SectorConfig &_scfg, const std::string &folder, bool debug)
 
unsigned int process (const CTPPSLocalTrackLiteCollection &tracks, const PPSAlignmentConfig &cfg, bool debug)
 

Public Attributes

MonitorElementh2_cut_h_aft
 
MonitorElementh2_cut_h_bef
 
MonitorElementh2_cut_v_aft
 
MonitorElementh2_cut_v_bef
 
MonitorElementh_q_cut_h_aft
 
MonitorElementh_q_cut_h_bef
 
MonitorElementh_q_cut_v_aft
 
MonitorElementh_q_cut_v_bef
 
std::map< unsigned int, MonitorElement * > m_h2_y_vs_x_aft_sel
 
std::map< unsigned int, MonitorElement * > m_h2_y_vs_x_bef_sel
 
std::map< unsigned int, MonitorElement * > m_h2_y_vs_x_mlt_sel
 
MonitorElementp_x_diffFN_vs_x_N
 
MonitorElementp_y_diffFN_vs_y_F
 
SectorConfig scfg
 
std::map< unsigned int, SlicePlotsx_slice_plots_F
 
std::map< unsigned int, SlicePlotsx_slice_plots_N
 

Detailed Description

Definition at line 58 of file PPSAlignmentWorker.cc.

Member Function Documentation

◆ init()

void PPSAlignmentWorker::SectorData::init ( DQMStore::IBooker iBooker,
const PPSAlignmentConfig cfg,
const SectorConfig _scfg,
const std::string &  folder,
bool  debug 
)

Definition at line 116 of file PPSAlignmentWorker.cc.

120  {
121  scfg = _scfg;
122 
123  // binning
124  const double bin_size_x = cfg.binning().bin_size_x_;
125  const unsigned int n_bins_x = cfg.binning().n_bins_x_;
126 
127  const double pixel_x_offset = cfg.binning().pixel_x_offset_;
128 
129  const double x_min_pix = pixel_x_offset, x_max_pix = pixel_x_offset + n_bins_x * bin_size_x;
130  const double x_min_str = 0., x_max_str = n_bins_x * bin_size_x;
131 
132  const unsigned int n_bins_y = cfg.binning().n_bins_y_;
133  const double y_min = cfg.binning().y_min_, y_max = cfg.binning().y_max_;
134 
135  // hit distributions
136  iBooker.setCurrentFolder(folder + "/" + scfg.name_ + "/before selection/" + scfg.rp_N_.name_);
138  iBooker.book2DD("h2_y_vs_x", ";x;y", n_bins_x, x_min_str, x_max_str, n_bins_y, y_min, y_max);
139  iBooker.setCurrentFolder(folder + "/" + scfg.name_ + "/before selection/" + scfg.rp_F_.name_);
141  iBooker.book2DD("h2_y_vs_x", ";x;y", n_bins_x, x_min_pix, x_max_pix, n_bins_y, y_min, y_max);
142 
143  iBooker.setCurrentFolder(folder + "/" + scfg.name_ + "/multiplicity selection/" + scfg.rp_N_.name_);
145  iBooker.book2DD("h2_y_vs_x", ";x;y", n_bins_x, x_min_str, x_max_str, n_bins_y, y_min, y_max);
146  iBooker.setCurrentFolder(folder + "/" + scfg.name_ + "/multiplicity selection/" + scfg.rp_F_.name_);
148  iBooker.book2DD("h2_y_vs_x", ";x;y", n_bins_x, x_min_pix, x_max_pix, n_bins_y, y_min, y_max);
149 
150  iBooker.setCurrentFolder(folder + "/" + scfg.name_ + "/after selection/" + scfg.rp_N_.name_);
152  iBooker.book2DD("h2_y_vs_x", ";x;y", n_bins_x, x_min_str, x_max_str, n_bins_y, y_min, y_max);
153  iBooker.setCurrentFolder(folder + "/" + scfg.name_ + "/after selection/" + scfg.rp_F_.name_);
155  iBooker.book2DD("h2_y_vs_x", ";x;y", n_bins_x, x_min_pix, x_max_pix, n_bins_y, y_min, y_max);
156 
157  // cut plots
158  iBooker.setCurrentFolder(folder + "/" + scfg.name_ + "/cuts/cut_h");
159  h_q_cut_h_bef = iBooker.book1DD("h_q_cut_h_bef", ";cq_h", 400, -2., 2.);
160  h_q_cut_h_aft = iBooker.book1DD("h_q_cut_h_aft", ";cq_h", 400, -2., 2.);
161  h2_cut_h_bef =
162  iBooker.book2DD("h2_cut_h_bef", ";x_up;x_dw", n_bins_x, x_min_str, x_max_str, n_bins_x, x_min_pix, x_max_pix);
163  h2_cut_h_aft =
164  iBooker.book2DD("h2_cut_h_aft", ";x_up;x_dw", n_bins_x, x_min_str, x_max_str, n_bins_x, x_min_pix, x_max_pix);
165 
166  iBooker.setCurrentFolder(folder + "/" + scfg.name_ + "/cuts/cut_v");
167  h_q_cut_v_bef = iBooker.book1DD("h_q_cut_v_bef", ";cq_v", 400, -2., 2.);
168  h_q_cut_v_aft = iBooker.book1DD("h_q_cut_v_aft", ";cq_v", 400, -2., 2.);
169  h2_cut_v_bef = iBooker.book2DD("h2_cut_v_bef", ";y_up;y_dw", n_bins_y, y_min, y_max, n_bins_y, y_min, y_max);
170  h2_cut_v_aft = iBooker.book2DD("h2_cut_v_aft", ";y_up;y_dw", n_bins_y, y_min, y_max, n_bins_y, y_min, y_max);
171 
172  // near-far plots
173  iBooker.setCurrentFolder(folder + "/" + scfg.name_ + "/near_far");
174  auto *tmp = new TProfile("", ";x_{N};x_{F} - x_{N}", 100, 0., 20.);
175  p_x_diffFN_vs_x_N = iBooker.bookProfile("p_x_diffFN_vs_x_N", tmp);
176 
177  for (int i = 0; i < scfg.rp_N_.x_slice_n_; i++) {
178  const double xMin = scfg.rp_N_.x_slice_min_ + i * scfg.rp_N_.x_slice_w_;
179  const double xMax = scfg.rp_N_.x_slice_min_ + (i + 1) * scfg.rp_N_.x_slice_w_;
180 
181  char buf[100];
182  sprintf(buf, "%.1f-%.1f", xMin, xMax);
183 
184  iBooker.setCurrentFolder(folder + "/" + scfg.name_ + "/near_far/x slices, N/" + buf);
185  x_slice_plots_N.insert({i, SlicePlots(iBooker, debug)});
186  }
187 
188  for (int i = 0; i < scfg.rp_F_.x_slice_n_; i++) {
189  const double xMin = scfg.rp_F_.x_slice_min_ + i * scfg.rp_F_.x_slice_w_;
190  const double xMax = scfg.rp_F_.x_slice_min_ + (i + 1) * scfg.rp_F_.x_slice_w_;
191 
192  char buf[100];
193  sprintf(buf, "%.1f-%.1f", xMin, xMax);
194 
195  iBooker.setCurrentFolder(folder + "/" + scfg.name_ + "/near_far/x slices, F/" + buf);
196  x_slice_plots_F.insert({i, SlicePlots(iBooker, debug)});
197  }
198 }

References dqm::implementation::IBooker::book1DD(), dqm::implementation::IBooker::book2DD(), dqm::implementation::IBooker::bookProfile(), visDQMUpload::buf, looper::cfg, debug, printsummarytable::folder, h2_cut_h_aft, h2_cut_h_bef, h2_cut_v_aft, h2_cut_v_bef, h_q_cut_h_aft, h_q_cut_h_bef, h_q_cut_v_aft, h_q_cut_v_bef, mps_fire::i, RPConfig::id_, m_h2_y_vs_x_aft_sel, m_h2_y_vs_x_bef_sel, m_h2_y_vs_x_mlt_sel, RPConfig::name_, SectorConfig::name_, p_x_diffFN_vs_x_N, SectorConfig::rp_F_, SectorConfig::rp_N_, scfg, dqm::implementation::NavigatorBase::setCurrentFolder(), createJobs::tmp, RPConfig::x_slice_min_, RPConfig::x_slice_n_, x_slice_plots_F, x_slice_plots_N, RPConfig::x_slice_w_, multiplicitycorr_cfi::xMax, and photonAnalyzer_cfi::xMin.

Referenced by PPSAlignmentWorker::bookHistograms().

◆ process()

unsigned int PPSAlignmentWorker::SectorData::process ( const CTPPSLocalTrackLiteCollection tracks,
const PPSAlignmentConfig cfg,
bool  debug 
)

Definition at line 200 of file PPSAlignmentWorker.cc.

202  {
203  CTPPSLocalTrackLiteCollection tracksUp, tracksDw;
204 
205  for (const auto &tr : tracks) {
206  CTPPSDetId rpId(tr.rpId());
207  unsigned int rpDecId = rpId.arm() * 100 + rpId.station() * 10 + rpId.rp();
208 
209  if (rpDecId != scfg.rp_N_.id_ && rpDecId != scfg.rp_F_.id_)
210  continue;
211 
212  double x = tr.x();
213  double y = tr.y();
214 
215  // re-build track object
216  CTPPSLocalTrackLite trCorr(tr.rpId(),
217  x,
218  0.,
219  y,
220  0.,
221  tr.tx(),
222  tr.txUnc(),
223  tr.ty(),
224  tr.tyUnc(),
225  tr.chiSquaredOverNDF(),
226  tr.pixelTrackRecoInfo(),
227  tr.numberOfPointsUsedForFit(),
228  tr.time(),
229  tr.timeUnc());
230 
231  // store corrected track into the right collection
232  if (rpDecId == scfg.rp_N_.id_)
233  tracksUp.push_back(trCorr);
234  if (rpDecId == scfg.rp_F_.id_)
235  tracksDw.push_back(trCorr);
236  }
237 
238  // update plots before selection
239  for (const auto &tr : tracksUp)
240  m_h2_y_vs_x_bef_sel[scfg.rp_N_.id_]->Fill(tr.x(), tr.y());
241 
242  for (const auto &tr : tracksDw)
243  m_h2_y_vs_x_bef_sel[scfg.rp_F_.id_]->Fill(tr.x(), tr.y());
244 
245  // skip crowded events
246  if (tracksUp.size() > cfg.maxRPTracksSize())
247  return 0;
248 
249  if (tracksDw.size() > cfg.maxRPTracksSize())
250  return 0;
251 
252  // update plots with multiplicity selection
253  for (const auto &tr : tracksUp)
254  m_h2_y_vs_x_mlt_sel[scfg.rp_N_.id_]->Fill(tr.x(), tr.y());
255 
256  for (const auto &tr : tracksDw)
257  m_h2_y_vs_x_mlt_sel[scfg.rp_F_.id_]->Fill(tr.x(), tr.y());
258 
259  // do the selection
260  unsigned int pairsSelected = 0;
261 
262  for (const auto &trUp : tracksUp) {
263  for (const auto &trDw : tracksDw) {
264  h2_cut_h_bef->Fill(trUp.x(), trDw.x());
265  h2_cut_v_bef->Fill(trUp.y(), trDw.y());
266 
267  const double cq_h = trDw.x() + scfg.cut_h_a_ * trUp.x() + scfg.cut_h_c_;
268  h_q_cut_h_bef->Fill(cq_h);
269  const bool cv_h = (std::fabs(cq_h) < cfg.n_si() * scfg.cut_h_si_);
270 
271  const double cq_v = trDw.y() + scfg.cut_v_a_ * trUp.y() + scfg.cut_v_c_;
272  h_q_cut_v_bef->Fill(cq_v);
273  const bool cv_v = (std::fabs(cq_v) < cfg.n_si() * scfg.cut_v_si_);
274 
275  bool cutsPassed = true;
276  if (scfg.cut_h_apply_)
277  cutsPassed &= cv_h;
278  if (scfg.cut_v_apply_)
279  cutsPassed &= cv_v;
280 
281  if (cutsPassed) {
282  pairsSelected++;
283 
284  h_q_cut_h_aft->Fill(cq_h);
285  h_q_cut_v_aft->Fill(cq_v);
286 
287  h2_cut_h_aft->Fill(trUp.x(), trDw.x());
288  h2_cut_v_aft->Fill(trUp.y(), trDw.y());
289 
290  m_h2_y_vs_x_aft_sel[scfg.rp_N_.id_]->Fill(trUp.x(), trUp.y());
291  m_h2_y_vs_x_aft_sel[scfg.rp_F_.id_]->Fill(trDw.x(), trDw.y());
292 
293  p_x_diffFN_vs_x_N->Fill(trUp.x(), trDw.x() - trUp.x());
294 
295  int idx = (trUp.x() - scfg.rp_N_.x_slice_min_) / scfg.rp_N_.x_slice_w_;
296  if (idx >= 0 && idx < scfg.rp_N_.x_slice_n_) {
297  x_slice_plots_N[idx].h_y->Fill(trUp.y());
298  x_slice_plots_N[idx].p_y_diffFN_vs_y->Fill(trUp.y(), trDw.y() - trUp.y());
299  if (debug)
300  x_slice_plots_N[idx].h2_y_diffFN_vs_y->Fill(trUp.y(), trDw.y() - trUp.y());
301  }
302 
303  idx = (trDw.x() - scfg.rp_F_.x_slice_min_) / scfg.rp_F_.x_slice_w_;
304  if (idx >= 0 && idx < scfg.rp_F_.x_slice_n_) {
305  x_slice_plots_F[idx].h_y->Fill(trDw.y());
306  x_slice_plots_F[idx].p_y_diffFN_vs_y->Fill(trDw.y(), trDw.y() - trUp.y());
307  if (debug)
308  x_slice_plots_F[idx].h2_y_diffFN_vs_y->Fill(trDw.y(), trDw.y() - trUp.y());
309  }
310  }
311  }
312  }
313 
314  return pairsSelected;
315 }

References looper::cfg, SectorConfig::cut_h_a_, SectorConfig::cut_h_apply_, SectorConfig::cut_h_c_, SectorConfig::cut_h_si_, SectorConfig::cut_v_a_, SectorConfig::cut_v_apply_, SectorConfig::cut_v_c_, SectorConfig::cut_v_si_, debug, dqm::impl::MonitorElement::Fill(), h2_cut_h_aft, h2_cut_h_bef, h2_cut_v_aft, h2_cut_v_bef, h_q_cut_h_aft, h_q_cut_h_bef, h_q_cut_v_aft, h_q_cut_v_bef, RPConfig::id_, heavyIonCSV_trainingSettings::idx, m_h2_y_vs_x_aft_sel, m_h2_y_vs_x_bef_sel, m_h2_y_vs_x_mlt_sel, p_x_diffFN_vs_x_N, SectorConfig::rp_F_, SectorConfig::rp_N_, year_2016_postTS2_cff::rpId, scfg, PDWG_EXOHSCP_cff::tracks, x, RPConfig::x_slice_min_, RPConfig::x_slice_n_, x_slice_plots_F, x_slice_plots_N, RPConfig::x_slice_w_, and y.

Referenced by PPSAlignmentWorker::analyze().

Member Data Documentation

◆ h2_cut_h_aft

MonitorElement * PPSAlignmentWorker::SectorData::h2_cut_h_aft

Definition at line 70 of file PPSAlignmentWorker.cc.

Referenced by init(), and process().

◆ h2_cut_h_bef

MonitorElement* PPSAlignmentWorker::SectorData::h2_cut_h_bef

Definition at line 70 of file PPSAlignmentWorker.cc.

Referenced by init(), and process().

◆ h2_cut_v_aft

MonitorElement * PPSAlignmentWorker::SectorData::h2_cut_v_aft

Definition at line 73 of file PPSAlignmentWorker.cc.

Referenced by init(), and process().

◆ h2_cut_v_bef

MonitorElement* PPSAlignmentWorker::SectorData::h2_cut_v_bef

Definition at line 73 of file PPSAlignmentWorker.cc.

Referenced by init(), and process().

◆ h_q_cut_h_aft

MonitorElement * PPSAlignmentWorker::SectorData::h_q_cut_h_aft

Definition at line 69 of file PPSAlignmentWorker.cc.

Referenced by init(), and process().

◆ h_q_cut_h_bef

MonitorElement* PPSAlignmentWorker::SectorData::h_q_cut_h_bef

Definition at line 69 of file PPSAlignmentWorker.cc.

Referenced by init(), and process().

◆ h_q_cut_v_aft

MonitorElement * PPSAlignmentWorker::SectorData::h_q_cut_v_aft

Definition at line 72 of file PPSAlignmentWorker.cc.

Referenced by init(), and process().

◆ h_q_cut_v_bef

MonitorElement* PPSAlignmentWorker::SectorData::h_q_cut_v_bef

Definition at line 72 of file PPSAlignmentWorker.cc.

Referenced by init(), and process().

◆ m_h2_y_vs_x_aft_sel

std::map<unsigned int, MonitorElement *> PPSAlignmentWorker::SectorData::m_h2_y_vs_x_aft_sel

Definition at line 66 of file PPSAlignmentWorker.cc.

Referenced by init(), and process().

◆ m_h2_y_vs_x_bef_sel

std::map<unsigned int, MonitorElement *> PPSAlignmentWorker::SectorData::m_h2_y_vs_x_bef_sel

Definition at line 62 of file PPSAlignmentWorker.cc.

Referenced by init(), and process().

◆ m_h2_y_vs_x_mlt_sel

std::map<unsigned int, MonitorElement *> PPSAlignmentWorker::SectorData::m_h2_y_vs_x_mlt_sel

Definition at line 64 of file PPSAlignmentWorker.cc.

Referenced by init(), and process().

◆ p_x_diffFN_vs_x_N

MonitorElement* PPSAlignmentWorker::SectorData::p_x_diffFN_vs_x_N

Definition at line 76 of file PPSAlignmentWorker.cc.

Referenced by init(), and process().

◆ p_y_diffFN_vs_y_F

MonitorElement* PPSAlignmentWorker::SectorData::p_y_diffFN_vs_y_F

Definition at line 77 of file PPSAlignmentWorker.cc.

◆ scfg

SectorConfig PPSAlignmentWorker::SectorData::scfg

Definition at line 59 of file PPSAlignmentWorker.cc.

Referenced by init(), and process().

◆ x_slice_plots_F

std::map<unsigned int, SlicePlots> PPSAlignmentWorker::SectorData::x_slice_plots_F

Definition at line 88 of file PPSAlignmentWorker.cc.

Referenced by init(), and process().

◆ x_slice_plots_N

std::map<unsigned int, SlicePlots> PPSAlignmentWorker::SectorData::x_slice_plots_N

Definition at line 88 of file PPSAlignmentWorker.cc.

Referenced by init(), and process().

RPConfig::x_slice_min_
double x_slice_min_
Definition: PPSAlignmentConfig.h:56
CTPPSLocalTrackLite
Local (=single RP) track with essential information only.
Definition: CTPPSLocalTrackLite.h:18
DDAxes::y
CTPPSLocalTrackLiteCollection
std::vector< CTPPSLocalTrackLite > CTPPSLocalTrackLiteCollection
Collection of CTPPSLocalTrackLite objects.
Definition: CTPPSLocalTrackLiteFwd.h:18
SectorConfig::name_
std::string name_
Definition: PPSAlignmentConfig.h:65
PDWG_EXOHSCP_cff.tracks
tracks
Definition: PDWG_EXOHSCP_cff.py:28
mps_fire.i
i
Definition: mps_fire.py:428
SectorConfig::cut_h_c_
double cut_h_c_
Definition: PPSAlignmentConfig.h:70
PPSAlignmentWorker::SectorData::scfg
SectorConfig scfg
Definition: PPSAlignmentWorker.cc:59
PPSAlignmentWorker::SectorData::p_x_diffFN_vs_x_N
MonitorElement * p_x_diffFN_vs_x_N
Definition: PPSAlignmentWorker.cc:76
SectorConfig::rp_F_
RPConfig rp_F_
Definition: PPSAlignmentConfig.h:66
printsummarytable.folder
folder
Definition: printsummarytable.py:7
RPConfig::x_slice_w_
double x_slice_w_
Definition: PPSAlignmentConfig.h:56
dqm::implementation::NavigatorBase::setCurrentFolder
virtual void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:32
SectorConfig::cut_v_si_
double cut_v_si_
Definition: PPSAlignmentConfig.h:73
PPSAlignmentWorker::SectorData::h2_cut_h_bef
MonitorElement * h2_cut_h_bef
Definition: PPSAlignmentWorker.cc:70
PPSAlignmentWorker::SectorData::h_q_cut_h_bef
MonitorElement * h_q_cut_h_bef
Definition: PPSAlignmentWorker.cc:69
DDAxes::x
year_2016_postTS2_cff.rpId
rpId
Definition: year_2016_postTS2_cff.py:23
PPSAlignmentWorker::SectorData::m_h2_y_vs_x_mlt_sel
std::map< unsigned int, MonitorElement * > m_h2_y_vs_x_mlt_sel
Definition: PPSAlignmentWorker.cc:64
createJobs.tmp
tmp
align.sh
Definition: createJobs.py:716
heavyIonCSV_trainingSettings.idx
idx
Definition: heavyIonCSV_trainingSettings.py:5
photonAnalyzer_cfi.xMin
xMin
Definition: photonAnalyzer_cfi.py:82
PPSAlignmentWorker::SectorData::m_h2_y_vs_x_bef_sel
std::map< unsigned int, MonitorElement * > m_h2_y_vs_x_bef_sel
Definition: PPSAlignmentWorker.cc:62
debug
#define debug
Definition: HDRShower.cc:19
PPSAlignmentWorker::SectorData::h2_cut_h_aft
MonitorElement * h2_cut_h_aft
Definition: PPSAlignmentWorker.cc:70
PPSAlignmentWorker::SectorData::h2_cut_v_aft
MonitorElement * h2_cut_v_aft
Definition: PPSAlignmentWorker.cc:73
dqm::impl::MonitorElement::Fill
void Fill(long long x)
Definition: MonitorElement.h:290
RPConfig::x_slice_n_
int x_slice_n_
Definition: PPSAlignmentConfig.h:55
dqm::implementation::IBooker::bookProfile
MonitorElement * bookProfile(TString const &name, TString const &title, int nchX, double lowX, double highX, int, double lowY, double highY, char const *option="s", FUNC onbooking=NOOP())
Definition: DQMStore.h:322
PPSAlignmentWorker::SectorData::h_q_cut_h_aft
MonitorElement * h_q_cut_h_aft
Definition: PPSAlignmentWorker.cc:69
PPSAlignmentWorker::SectorData::h_q_cut_v_aft
MonitorElement * h_q_cut_v_aft
Definition: PPSAlignmentWorker.cc:72
dqm::implementation::IBooker::book1DD
MonitorElement * book1DD(TString const &name, TString const &title, int nchX, double lowX, double highX, FUNC onbooking=NOOP())
Definition: DQMStore.h:155
SectorConfig::cut_v_apply_
bool cut_v_apply_
Definition: PPSAlignmentConfig.h:72
RPConfig::name_
std::string name_
Definition: PPSAlignmentConfig.h:44
SectorConfig::cut_v_c_
double cut_v_c_
Definition: PPSAlignmentConfig.h:73
dqm::implementation::IBooker::book2DD
MonitorElement * book2DD(TString const &name, TString const &title, int nchX, double lowX, double highX, int nchY, double lowY, double highY, FUNC onbooking=NOOP())
Definition: DQMStore.h:261
PPSAlignmentWorker::SectorData::h_q_cut_v_bef
MonitorElement * h_q_cut_v_bef
Definition: PPSAlignmentWorker.cc:72
PPSAlignmentWorker::SectorData::m_h2_y_vs_x_aft_sel
std::map< unsigned int, MonitorElement * > m_h2_y_vs_x_aft_sel
Definition: PPSAlignmentWorker.cc:66
CTPPSDetId
Base class for CTPPS detector IDs.
Definition: CTPPSDetId.h:31
RPConfig::id_
unsigned int id_
Definition: PPSAlignmentConfig.h:45
visDQMUpload.buf
buf
Definition: visDQMUpload.py:154
SectorConfig::cut_h_apply_
bool cut_h_apply_
Definition: PPSAlignmentConfig.h:69
looper.cfg
cfg
Definition: looper.py:297
PPSAlignmentWorker::SectorData::h2_cut_v_bef
MonitorElement * h2_cut_v_bef
Definition: PPSAlignmentWorker.cc:73
SectorConfig::rp_N_
RPConfig rp_N_
Definition: PPSAlignmentConfig.h:66
multiplicitycorr_cfi.xMax
xMax
Definition: multiplicitycorr_cfi.py:5
SectorConfig::cut_v_a_
double cut_v_a_
Definition: PPSAlignmentConfig.h:73
SectorConfig::cut_h_si_
double cut_h_si_
Definition: PPSAlignmentConfig.h:70
PPSAlignmentWorker::SectorData::x_slice_plots_F
std::map< unsigned int, SlicePlots > x_slice_plots_F
Definition: PPSAlignmentWorker.cc:88
SectorConfig::cut_h_a_
double cut_h_a_
Definition: PPSAlignmentConfig.h:70
PPSAlignmentWorker::SectorData::x_slice_plots_N
std::map< unsigned int, SlicePlots > x_slice_plots_N
Definition: PPSAlignmentWorker.cc:88