CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
RPixRoadFinder.cc
Go to the documentation of this file.
1 
3 
4 // user include files
7 
11 
13 
14 //needed for the geometry:
17 
18 #include "TMath.h"
21 
22 #include <vector>
23 #include <memory>
24 #include <string>
25 #include <iostream>
26 
27 //------------------------------------------------------------------------------------------------//
28 
30  verbosity_ = parameterSet.getUntrackedParameter<int>("verbosity");
31  roadRadius_ = parameterSet.getParameter<double>("roadRadius");
32  minRoadSize_ = parameterSet.getParameter<int>("minRoadSize");
33  maxRoadSize_ = parameterSet.getParameter<int>("maxRoadSize");
34 }
35 
36 //------------------------------------------------------------------------------------------------//
37 
39 
40 //------------------------------------------------------------------------------------------------//
41 
43  Road temp_all_hits;
44  temp_all_hits.clear();
45 
46  // convert local hit sto global and push them to a vector
47  for (const auto& ds_rh2 : *hitVector_) {
48  const auto myid = CTPPSPixelDetId(ds_rh2.id);
49  for (const auto& it_rh : ds_rh2.data) {
50  CTPPSGeometry::Vector localV(it_rh.point().x(), it_rh.point().y(), it_rh.point().z());
51  const auto& globalV = geometry_->localToGlobal(ds_rh2.id, localV);
52  math::Error<3>::type localError;
53  localError[0][0] = it_rh.error().xx();
54  localError[0][1] = it_rh.error().xy();
55  localError[0][2] = 0.;
56  localError[1][0] = it_rh.error().xy();
57  localError[1][1] = it_rh.error().yy();
58  localError[1][2] = 0.;
59  localError[2][0] = 0.;
60  localError[2][1] = 0.;
61  localError[2][2] = 0.;
62  if (verbosity_ > 2)
63  edm::LogInfo("RPixRoadFinder") << "Hits = " << ds_rh2.data.size();
64 
65  DetGeomDesc::RotationMatrix theRotationMatrix = geometry_->sensor(myid)->rotation();
66  AlgebraicMatrix33 theRotationTMatrix;
67  theRotationMatrix.GetComponents(theRotationTMatrix(0, 0),
68  theRotationTMatrix(0, 1),
69  theRotationTMatrix(0, 2),
70  theRotationTMatrix(1, 0),
71  theRotationTMatrix(1, 1),
72  theRotationTMatrix(1, 2),
73  theRotationTMatrix(2, 0),
74  theRotationTMatrix(2, 1),
75  theRotationTMatrix(2, 2));
76 
77  math::Error<3>::type globalError = ROOT::Math::SimilarityT(theRotationTMatrix, localError);
78  temp_all_hits.emplace_back(PointInPlane{globalV, globalError, it_rh, myid});
79  }
80  }
81 
82  Road::iterator it_gh1 = temp_all_hits.begin();
83  Road::iterator it_gh2;
84 
85  patternVector_.clear();
86 
87  //look for points near wrt each other
88  // starting algorithm
89  while (it_gh1 != temp_all_hits.end() && temp_all_hits.size() >= minRoadSize_) {
90  Road temp_road;
91 
92  it_gh2 = it_gh1;
93 
94  const auto currPoint = it_gh1->globalPoint;
95  CTPPSPixelDetId currDet = CTPPSPixelDetId(it_gh1->detId);
96 
97  while (it_gh2 != temp_all_hits.end()) {
98  bool same_pot = false;
99  CTPPSPixelDetId tmpGh2Id = CTPPSPixelDetId(it_gh2->detId);
100  if (currDet.rpId() == tmpGh2Id.rpId())
101  same_pot = true;
102  const auto subtraction = currPoint - it_gh2->globalPoint;
103 
104  if (subtraction.Rho() < roadRadius_ && same_pot) {
105  temp_road.push_back(*it_gh2);
106  temp_all_hits.erase(it_gh2);
107  } else {
108  ++it_gh2;
109  }
110  }
111 
112  if (temp_road.size() >= minRoadSize_ && temp_road.size() < maxRoadSize_)
113  patternVector_.push_back(temp_road);
114  }
115  // end of algorithm
116 }
T getUntrackedParameter(std::string const &, T const &) const
ROOT::Math::SMatrix< double, 3, 3, ROOT::Math::MatRepStd< double, 3, 3 > > AlgebraicMatrix33
unsigned int maxRoadSize_
ErrorD< N >::type type
Definition: Error.h:32
std::vector< PointInPlane > Road
DetGeomDesc::Translation Vector
Definition: CTPPSGeometry.h:36
Vector localToGlobal(const DetGeomDesc *, const Vector &) const
CTPPSDetId rpId() const
Definition: CTPPSDetId.h:78
const CTPPSGeometry * geometry_
const edm::DetSetVector< CTPPSPixelRecHit > * hitVector_
RPixRoadFinder(const edm::ParameterSet &param)
ParameterSet const & parameterSet(StableProvenance const &provenance, ProcessHistory const &history)
Definition: Provenance.cc:11
void findPattern() override
std::vector< Road > patternVector_
Log< level::Info, false > LogInfo
const DetGeomDesc * sensor(unsigned int id) const
returns geometry of a detector performs necessary checks, returns NULL if fails
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
unsigned int minRoadSize_
const RotationMatrix & rotation() const
Definition: DetGeomDesc.h:81
~RPixRoadFinder() override
ROOT::Math::Rotation3D RotationMatrix
Definition: DetGeomDesc.h:54