CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
FP420RecoMain Class Reference

#include <FP420RecoMain.h>

Public Member Functions

 FP420RecoMain (const edm::ParameterSet &conf)
 
void run (edm::Handle< TrackCollectionFP420 > &input, RecoCollectionFP420 *toutput, double VtxX, double VtxY, double VtxZ)
 Runs the algorithm. More...
 
 ~FP420RecoMain ()
 

Private Attributes

edm::ParameterSet conf_
 
int dn0
 
RecoProducerFP420finderParameters_
 
double m_rpp420_b
 
double m_rpp420_f
 
double m_zrefb
 
double m_zreff
 
int verbosity
 
double zinibeg_
 

Detailed Description

Definition at line 15 of file FP420RecoMain.h.

Constructor & Destructor Documentation

◆ FP420RecoMain()

FP420RecoMain::FP420RecoMain ( const edm::ParameterSet conf)

Definition at line 27 of file FP420RecoMain.cc.

References conf_, gather_cfg::cout, dn0, finderParameters_, edm::ParameterSet::getParameter(), edm::ParameterSet::getUntrackedParameter(), m_rpp420_b, m_rpp420_f, m_zrefb, m_zreff, verbosity, and zinibeg_.

27  : conf_(conf) {
28  verbosity = conf_.getUntrackedParameter<int>("VerbosityLevel");
29  m_rpp420_f = conf_.getParameter<double>("RP420f"); //mm
30  m_rpp420_b = conf_.getParameter<double>("RP420b"); //mm
31  m_zreff = conf_.getParameter<double>("zreff"); //mm
32  m_zrefb = conf_.getParameter<double>("zrefb"); //mm
33  dn0 = conf_.getParameter<int>("NumberFP420Detectors");
34 
35  if (verbosity > 0) {
36  std::cout << "FP420RecoMain constructor::" << std::endl;
37  std::cout << "m_rpp420_f=" << m_rpp420_f << " m_rpp420_b=" << m_rpp420_b << std::endl;
38  std::cout << "m_zreff=" << m_zreff << " m_zrefb=" << m_zrefb << std::endl;
39  }
40 
41  double eee1 = 11.;
42  double eee2 = 12.;
43  // zinibeg_ = (eee1-eee2)/2.;
44  zinibeg_ = 0.;
45  //
46  if (verbosity > 1) {
47  std::cout << "FP420RecoMain constructor::" << std::endl;
48  std::cout << " eee1=" << eee1 << " eee2=" << eee2 << " zinibeg =" << zinibeg_ << std::endl;
49  }
52 }
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
edm::ParameterSet conf_
Definition: FP420RecoMain.h:25
double m_rpp420_f
Definition: FP420RecoMain.h:30
T getUntrackedParameter(std::string const &, T const &) const
RecoProducerFP420 * finderParameters_
Definition: FP420RecoMain.h:26
double m_rpp420_b
Definition: FP420RecoMain.h:31

◆ ~FP420RecoMain()

FP420RecoMain::~FP420RecoMain ( )

Definition at line 54 of file FP420RecoMain.cc.

References finderParameters_.

54  {
55  if (finderParameters_ != nullptr) {
56  delete finderParameters_;
57  }
58 }
RecoProducerFP420 * finderParameters_
Definition: FP420RecoMain.h:26

Member Function Documentation

◆ run()

void FP420RecoMain::run ( edm::Handle< TrackCollectionFP420 > &  input,
RecoCollectionFP420 toutput,
double  VtxX,
double  VtxY,
double  VtxZ 
)

Runs the algorithm.

Definition at line 60 of file FP420RecoMain.cc.

References TrackFP420::ax(), TrackFP420::ay(), TrackFP420::bx(), TrackFP420::by(), gather_cfg::cout, RecoFP420::direction(), dn0, RecoFP420::e0(), finderParameters_, first, RecoCollectionFP420::get(), input, m_rpp420_b, m_rpp420_f, m_zrefb, m_zreff, RecoCollectionFP420::put(), RecoFP420::q20(), RecoProducerFP420::reconstruct(), RecoFP420::tx0(), RecoFP420::ty0(), verbosity, RecoFP420::x0(), testProducerWithPsetDescEmpty_cfi::x1, testProducerWithPsetDescEmpty_cfi::x2, RecoFP420::y0(), testProducerWithPsetDescEmpty_cfi::y1, testProducerWithPsetDescEmpty_cfi::y2, testProducerWithPsetDescEmpty_cfi::z2, FP420Track_cfi::z420, and zinibeg_.

Referenced by cms::ReconstructerFP420::produce().

61  {
62  // initialization
63  bool first = true;
64  // finderParameters_->clear();
65  // finderParameters_->setIP( 0., 0., 0. );
66  std::vector<TrackFP420> rhits;
67  int restracks = 10; // max # tracks
68  rhits.reserve(restracks);
69  rhits.clear();
70 
71  // loop over detunits:
72  for (int number_detunits = 1; number_detunits < dn0; number_detunits++) {
73  unsigned int StID = number_detunits;
74  std::vector<RecoFP420> rcollector;
75  int restracks = 10; // max # tracks
76  rcollector.reserve(restracks);
77  rcollector.clear();
78 
80  std::vector<TrackFP420> collector;
81  collector.clear();
82  TrackCollectionFP420::Range outputRange;
83  unsigned int StIDTrack = 1111;
84  double z420 = m_rpp420_f;
85  double zref1 = m_zreff;
86  double zinibeg = zinibeg_;
87  double VtxXcur = VtxX;
88  double VtxYcur = VtxY;
89  double VtxZcur = VtxZ;
90  if (StID == 2) {
91  StIDTrack = 2222;
92  z420 = -m_rpp420_b;
93  zref1 = -m_zrefb;
94  zinibeg = -zinibeg_;
95  // VtxXcur = -VtxX;
96  // VtxYcur = -VtxY;
97  // VtxZcur = -VtxZ;
98  }
99  double z1 = z420 + zinibeg - VtxZcur;
100  double z2 = z420 + zinibeg + zref1 - VtxZcur;
101  if (verbosity > 1) {
102  std::cout << "FP420RecoMain: StIDTrack=" << StIDTrack << std::endl;
103  }
104  outputRange = input->get(StIDTrack);
105  //
106  // fill output in collector vector (for may be sorting? or other checks)
107  //
108  TrackCollectionFP420::ContainerIterator sort_begin = outputRange.first;
109  TrackCollectionFP420::ContainerIterator sort_end = outputRange.second;
110  //
111  for (; sort_begin != sort_end; ++sort_begin) {
112  collector.push_back(*sort_begin);
113  } // for sort_begin
114  if (verbosity > 1) {
115  std::cout << "FP420RecoMain: track collector.size=" << collector.size() << std::endl;
116  }
117  std::vector<TrackFP420>::const_iterator simHitIter = collector.begin();
118  std::vector<TrackFP420>::const_iterator simHitIterEnd = collector.end();
119  for (; simHitIter != simHitIterEnd; ++simHitIter) {
120  const TrackFP420 itrack = *simHitIter;
121  double x1 = (itrack.bx() * z1 + (itrack.ax() - VtxXcur)) * 1000.; //um
122  double y1 = (itrack.by() * z1 + (itrack.ay() - VtxYcur)) * 1000.; //um
123  double x2 = (itrack.bx() * z2 + (itrack.ax() - VtxXcur)) * 1000.; //um
124  double y2 = (itrack.by() * z2 + (itrack.ay() - VtxYcur)) * 1000.; //um
126  if (verbosity == -49) {
127  std::cout << "==================================================================== " << std::endl;
128  std::cout << "FP420RecoMain: StID= " << StID << std::endl;
129  std::cout << "input coord. in mm: z1= " << z1 << std::endl;
130  std::cout << "input coord. in mm: z2= " << z2 << std::endl;
131  std::cout << "input: itrack.bx()= " << itrack.bx() << std::endl;
132  std::cout << "input: itrack.ax()= " << itrack.ax() << std::endl;
133  std::cout << "input: itrack.by()= " << itrack.by() << std::endl;
134  std::cout << "input: itrack.ay()= " << itrack.ay() << std::endl;
135 
136  std::cout << "input: in um X1noVtx= " << (itrack.bx() * (z420 + zinibeg) + itrack.ax()) * 1000. << std::endl;
137  std::cout << "input: in um Y1noVtx= " << (itrack.by() * (z420 + zinibeg) + itrack.ay()) * 1000. << std::endl;
138  std::cout << "input: in um X2noVtx= " << (itrack.bx() * (z420 + zinibeg + zref1) + itrack.ax()) * 1000.
139  << std::endl;
140  std::cout << "input: in um Y2noVtx= " << (itrack.by() * (z420 + zinibeg + zref1) + itrack.ay()) * 1000.
141  << std::endl;
142 
143  std::cout << "input: in mm VtxXcur= " << VtxXcur << std::endl;
144  std::cout << "input: in mm VtxYcur= " << VtxYcur << std::endl;
145  std::cout << "input: in mm VtxZcur= " << VtxZcur << std::endl;
146  std::cout << "input coord. in um: x1= " << x1 << std::endl;
147  std::cout << "input coord. in um: y1= " << y1 << std::endl;
148  std::cout << "input coord. in um: x2= " << x2 << std::endl;
149  std::cout << "input coord. in um: y2= " << y2 << std::endl;
150  }
151  double zz1 = fabs(z1);
152  double zz2 = fabs(z2);
153  rcollector = finderParameters_->reconstruct(
154  StID, x1, y1, x2, y2, zz1, zz2); // x1,y1,x2,y2 input coord. in um; z1, z2 in mm
155  }
157 
158  if (verbosity > 1) {
159  std::cout << "FP420RecoMain: track rcollector.size=" << rcollector.size() << std::endl;
160  }
161  if (!rcollector.empty()) {
162  RecoCollectionFP420::Range rinputRange;
163  rinputRange.first = rcollector.begin();
164  rinputRange.second = rcollector.end();
165 
166  if (first) {
167  // use it only if RecoCollectionFP420 is the RecoCollection of one event, otherwise, do not use (loose 1st cl. of 1st event only)
168  first = false;
169  unsigned int StID0 = 0;
170  toutput->put(rinputRange, StID0); // !!! put into adress 0 for detID which will not be used never
171  if (verbosity > 1) {
172  std::cout << "FP420RecoMain: put(rinputRange,StID0)" << std::endl;
173  }
174  } //if ( first )
175 
176  // !!! put !!! put
177  toutput->put(rinputRange, StID);
178  if (verbosity > 1) {
179  std::cout << "FP420RecoMain: put(rinputRange,StID)" << std::endl;
180  }
181 
182  } // if rcollector.size
183 
184  } // for loop over detunits
185 
186  if (verbosity > 1) {
187  // check of access to the zcollector:
188  for (int number_detunits = 1; number_detunits < dn0; number_detunits++) {
189  int StID = number_detunits;
190  if (verbosity > 1) {
191  std::cout << " ===" << std::endl;
192  std::cout << " ===" << std::endl;
193  std::cout << "FP420RecoMain: re-new StID= " << StID << std::endl;
194  }
195  std::vector<RecoFP420> zcollector;
196  zcollector.clear();
197  RecoCollectionFP420::Range zoutputRange;
198  zoutputRange = toutput->get(StID);
199  // fill output in zcollector vector (for may be sorting? or other checks)
200  RecoCollectionFP420::ContainerIterator sort_begin = zoutputRange.first;
201  RecoCollectionFP420::ContainerIterator sort_end = zoutputRange.second;
202  for (; sort_begin != sort_end; ++sort_begin) {
203  zcollector.push_back(*sort_begin);
204  } // for
205  std::cout << "=======FP420RecoMain:check of re-new zcollector size = " << zcollector.size() << std::endl;
206  std::cout << " ===" << std::endl;
207  std::cout << " ===" << std::endl;
208  std::vector<RecoFP420>::const_iterator simHitIter = zcollector.begin();
209  std::vector<RecoFP420>::const_iterator simHitIterEnd = zcollector.end();
210  // loop in recoess
211  for (; simHitIter != simHitIterEnd; ++simHitIter) {
212  const RecoFP420 itrack = *simHitIter;
213  //double e0, double x0, double y0, double tx0, double ty0, double q20, int direction
214  std::cout << "FP420RecoMain:check: direction = " << itrack.direction() << std::endl;
215  std::cout << " e0 = " << itrack.e0() << " q20 = " << itrack.q20() << std::endl;
216  std::cout << " tx0 = " << itrack.tx0() << " ty0 = " << itrack.ty0() << std::endl;
217  std::cout << " x0= " << itrack.x0() << " y0= " << itrack.y0() << std::endl;
218  std::cout << " ===" << std::endl;
219  std::cout << " ===" << std::endl;
220  std::cout << " =======================" << std::endl;
221  }
222  }
223 
224  //==================================
225 
226  // end of check of access to the strip collection
227  std::cout << "======= FP420RecoMain: end of check " << std::endl;
228 
229  } //if (verbos
230 }
std::pair< ContainerIterator, ContainerIterator > Range
double bx() const
Definition: TrackFP420.h:15
double by() const
Definition: TrackFP420.h:19
double tx0() const
Definition: RecoFP420.h:17
int direction() const
Definition: RecoFP420.h:20
std::pair< ContainerIterator, ContainerIterator > Range
double m_rpp420_f
Definition: FP420RecoMain.h:30
static std::string const input
Definition: EdmProvDump.cc:47
std::vector< RecoFP420 >::const_iterator ContainerIterator
std::vector< TrackFP420 >::const_iterator ContainerIterator
double q20() const
Definition: RecoFP420.h:19
RecoProducerFP420 * finderParameters_
Definition: FP420RecoMain.h:26
double ty0() const
Definition: RecoFP420.h:18
double y0() const
Definition: RecoFP420.h:16
double e0() const
Definition: RecoFP420.h:14
void put(Range input, unsigned int stationID)
double m_rpp420_b
Definition: FP420RecoMain.h:31
std::vector< RecoFP420 > reconstruct(int, double, double, double, double, double, double)
const Range get(unsigned int stationID) const
double ay() const
Definition: TrackFP420.h:18
double ax() const
Definition: TrackFP420.h:14
double x0() const
Definition: RecoFP420.h:15

Member Data Documentation

◆ conf_

edm::ParameterSet FP420RecoMain::conf_
private

Definition at line 25 of file FP420RecoMain.h.

Referenced by FP420RecoMain().

◆ dn0

int FP420RecoMain::dn0
private

Definition at line 34 of file FP420RecoMain.h.

Referenced by FP420RecoMain(), and run().

◆ finderParameters_

RecoProducerFP420* FP420RecoMain::finderParameters_
private

Definition at line 26 of file FP420RecoMain.h.

Referenced by FP420RecoMain(), run(), and ~FP420RecoMain().

◆ m_rpp420_b

double FP420RecoMain::m_rpp420_b
private

Definition at line 31 of file FP420RecoMain.h.

Referenced by FP420RecoMain(), and run().

◆ m_rpp420_f

double FP420RecoMain::m_rpp420_f
private

Definition at line 30 of file FP420RecoMain.h.

Referenced by FP420RecoMain(), and run().

◆ m_zrefb

double FP420RecoMain::m_zrefb
private

Definition at line 33 of file FP420RecoMain.h.

Referenced by FP420RecoMain(), and run().

◆ m_zreff

double FP420RecoMain::m_zreff
private

Definition at line 32 of file FP420RecoMain.h.

Referenced by FP420RecoMain(), and run().

◆ verbosity

int FP420RecoMain::verbosity
private

Definition at line 28 of file FP420RecoMain.h.

Referenced by FP420RecoMain(), and run().

◆ zinibeg_

double FP420RecoMain::zinibeg_
private

Definition at line 36 of file FP420RecoMain.h.

Referenced by FP420RecoMain(), and run().