CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RPCCosmicSeedrecHitFinder.cc
Go to the documentation of this file.
1 
13 
14 using namespace std;
15 using namespace edm;
16 
17 MuonTransientTrackingRecHit::MuonRecHitContainer::const_iterator find(MuonTransientTrackingRecHit::MuonRecHitContainer::const_iterator firstIter, MuonTransientTrackingRecHit::MuonRecHitContainer::const_iterator lastIter, const MuonTransientTrackingRecHit::MuonRecHitPointer& recHitRef) {
18 
19  MuonTransientTrackingRecHit::MuonRecHitContainer::const_iterator index = lastIter;
20  for(MuonTransientTrackingRecHit::MuonRecHitContainer::const_iterator iter = firstIter; iter != lastIter; iter++)
21  if((*iter) == recHitRef)
22  index = iter;
23  return index;
24 }
25 
27 
28  // Initiate the member
29  isLayerset = false;
30  isConfigured = false;
31  isInputset = false;
32  isOutputset = false;
33  isEdgeset = false;
34  BxRange = 0;
35  MaxDeltaPhi = 0;
36  ClusterSet.clear();
37  innerBounds.clear();
38  isLayersmixed = false;
39  LayersinRPC.clear();
40  therecHits.clear();
41  isOuterLayerfilled = false;
42 }
43 
45 
46 }
47 
49 
50  // Set the configuration
51  BxRange = iConfig.getParameter<unsigned int>("BxRange");
52  MaxDeltaPhi = iConfig.getParameter<double>("MaxDeltaPhi");
53  ClusterSet = iConfig.getParameter< std::vector<int> >("ClusterSet");
54 
55  // Set the signal open
56  isConfigured = true;
57 }
58 
60 
61  for(unsigned int i = 0; i < RPCLayerNumber; i++) {
62  AllrecHits[i].clear();
63  AllrecHits[i] = recHits[i];
64  }
65 
66  // Set the signal open
67  isInputset = true;
68 }
69 
71 
72  // Get RPCGeometry
73  edm::ESHandle<RPCGeometry> rpcGeometry;
74  iSetup.get<MuonGeometryRecord>().get(rpcGeometry);
75 
76  // Find all chamber in RB1in and collect their surface
77  const std::vector<DetId> AllRPCId = rpcGeometry->detIds();
78  for(std::vector<DetId>::const_iterator it = AllRPCId.begin(); it != AllRPCId.end(); it++) {
79  RPCDetId RPCId(it->rawId());
80  int Region = RPCId.region();
81  int Station = RPCId.station();
82  int Layer = RPCId.layer();
83  if(Region == 0 && Station == 1 && Layer == 1) {
84  const BoundPlane RPCChamberSurface = rpcGeometry->chamber(RPCId)->surface();
85  innerBounds.push_back(RPCChamberSurface);
86  }
87  }
88 
89  // Set the signal open
90  isEdgeset = true;
91 }
92 
94 
95  // Clear all surfaces of chambers in RB1in
96  innerBounds.clear();
97  isEdgeset = false;
98 }
99 
101 
102  for(unsigned int i = 0; i < RPCLayerNumber; i++)
103  AllrecHits[i].clear();
104  isInputset = false;
105 }
106 
108 
109  theSeed = Seed;
110  // Set the signal open
111  isOutputset = true;
112 }
113 
114 void RPCCosmicSeedrecHitFinder::setLayers(const std::vector<unsigned int>& Layers) {
115 
116  LayersinRPC = Layers;
117  // Set the signal open
118  isLayerset = true;
119 }
120 
122 
123  if(isLayerset == false || isConfigured == false || isOutputset == false || isInputset == false || isEdgeset == false) {
124  cout << "Not set the IO or not configured yet" << endl;
125  return;
126  }
127 
128  therecHits.clear();
129 
130  if(LayersinRPC.size() == 0) {
131  cout << "Not set with any layers" << endl;
132  LayersinRPC.clear();
133  therecHits.clear();
134  isLayerset = false;
135  }
136 
137  // check the layers, 1=all barrel, 2=all endcap, 3=mix
138  unsigned int Component = LayerComponent();
139  if(Component == 3)
140  isLayersmixed = true;
141  else
142  isLayersmixed = false;
143 
144  GlobalVector initVector(0, 0, 0);
145  const MuonRecHitPointer recHitRef;
146  isOuterLayerfilled = false;
147  complete(initVector, recHitRef);
148 
149  // Unset the signal
150  LayersinRPC.clear();
151  therecHits.clear();
152  isLayerset = false;
153 }
154 
156 
157  bool isBarrel = false;
158  bool isEndcap = false;
159  for(std::vector<unsigned int>::const_iterator it = LayersinRPC.begin(); it != LayersinRPC.end(); it++) {
160  if((*it) < BarrelLayerNumber)
161  isBarrel = true;
162  if((*it) >= BarrelLayerNumber && (*it) < (BarrelLayerNumber+EachEndcapLayerNumber*2))
163  isEndcap = true;
164  }
165  if(isBarrel == true && isEndcap == true)
166  return 3;
167  if(isEndcap == true)
168  return 2;
169  if(isBarrel == true)
170  return 1;
171  return 0;
172 }
173 
174 bool RPCCosmicSeedrecHitFinder::complete(const GlobalVector& lastSegment, const MuonRecHitPointer& lastrecHitRef) {
175 
176  bool isrecHitsfound = false;
177 
178  for(unsigned int i = 0; i < RPCLayerNumber; i++)
179  for(MuonRecHitContainer::const_iterator it = AllrecHits[i].begin(); it != AllrecHits[i].end(); it++) {
180 
181  cout << "Finding recHits from " << i << " th layer" << endl;
182  // information for recHits
183  GlobalPoint currentPosition = (*it)->globalPosition();
184  int currentBX;
185 
186  // Check validation
187  if(!(*it)->isValid())
188  continue;
189 
190  // Check BX range, be sure there is only RPCRecHit in the MuonRecHitContainer when use the dynamic_cast
191  TrackingRecHit* thisTrackingRecHit = (*it)->hit()->clone();
192  // Should also delete the RPCRecHit object cast by dynamic_cast<> ?
193  RPCRecHit* thisRPCRecHit = dynamic_cast<RPCRecHit*>(thisTrackingRecHit);
194  currentBX = thisRPCRecHit->BunchX();
195  int ClusterSize = thisRPCRecHit->clusterSize();
196  delete thisTrackingRecHit;
197  // Check BX
198  if((unsigned int)abs(currentBX) > BxRange)
199  continue;
200 
201  // Check cluster size
202  bool Clustercheck = false;
203  if(ClusterSet.size() == 0)
204  Clustercheck = true;
205  for(std::vector<int>::const_iterator CluIter = ClusterSet.begin(); CluIter != ClusterSet.end(); CluIter++)
206  if(ClusterSize == (*CluIter))
207  Clustercheck = true;
208  if(Clustercheck != true)
209  continue;
210 
211  cout << "Candidate recHit's position: " << currentPosition.x() << ", " << currentPosition.y() << ", " << currentPosition.z() << ". BX : " << currentBX << endl;
212  // Fill 1st recHit from outer layers and rest recHits from all layers
213  if(isOuterLayerfilled == false) {
214  // Pick out the recHit from outer layers and fill it
215  if(!isouterLayer(*it))
216  continue;
217 
218  // If pass all, add to the seed
219  GlobalVector currentSegment = GlobalVector(0, 0, 0);
220  cout << "1st recHit's global position: " << currentPosition.x() << ", " << currentPosition.y() << ", " << currentPosition.z() << ". BX: " << currentBX << endl;
221  isrecHitsfound = true;
222  therecHits.push_back(*it);
223  isOuterLayerfilled = true;
224  complete(currentSegment, *it);
225  // Remember to pop the recHit before add another one from the same layer!
226  therecHits.pop_back();
227  isOuterLayerfilled = false;
228  }
229  else {
230  GlobalPoint lastPosition = lastrecHitRef->globalPosition();
231  TrackingRecHit* lastTrackingRecHit = lastrecHitRef->hit()->clone();
232  // Should also delete the RPCRecHit object cast by dynamic_cast<> ?
233  RPCRecHit* lastRPCRecHit = dynamic_cast<RPCRecHit*>(lastTrackingRecHit);
234  int lastBX = lastRPCRecHit->BunchX();
235  delete lastTrackingRecHit;
236 
237  // Check the Y coordinate, shoule be lower than current one
238  if(currentPosition.y() >= lastPosition.y())
239  continue;
240 
241  // Check the BX, should be larger than current one
242  if(currentBX < lastBX)
243  continue;
244 
245  // If be the 2nd recHit, just fill it
246  bool isinsideRegion = isinsideAngleRange(lastSegment, lastPosition, currentPosition);
247  cout << "Check isinsideRegion: " << isinsideRegion << endl;
248  if(!isinsideRegion)
249  continue;
250 
251  // If cross the edge the recHit should belong to another seed
252  bool iscrossanyEdge = iscorssEdge(lastrecHitRef, *it);
253  cout << "Check iscrossanyEdge: " << iscrossanyEdge << endl;
254  if(iscrossanyEdge)
255  continue;
256 
257  // If pass all, add to the seed
258  unsigned int NumberinSeed = therecHits.size();
259  GlobalVector currentSegment = (GlobalVector)(currentPosition - lastPosition);
260  cout << (NumberinSeed + 1) << "th recHit's global position: " << currentPosition.x() << ", " << currentPosition.y() << ", " << currentPosition.z() << ". BX: " << currentBX << endl;
261  isrecHitsfound = true;
262  therecHits.push_back(*it);
263 
264  // if could not find next recHit in the search path, and have enough recHits already, that is the candidate
265  bool findNext = complete(currentSegment, *it);
266  if(findNext == false && therecHits.size() > 3) {
267  for(ConstMuonRecHitContainer::const_iterator iter = therecHits.begin(); iter != therecHits.end(); iter++)
268  cout << "Find recHit in seed candidate : " << (*iter)->globalPosition().x() << ", " << (*iter)->globalPosition().y() << ", " << (*iter)->globalPosition().z() << endl;
269  checkandfill();
270  }
271 
272  // Remember to pop the recHit before add another one from the same layer!
273  therecHits.pop_back();
274  }
275  }
276  return isrecHitsfound;
277 }
278 
280 
281  bool isinsideLayers = false;
282  for(std::vector<unsigned int>::const_iterator it = LayersinRPC.begin(); it != LayersinRPC.end(); it++) {
283  MuonRecHitContainer::const_iterator index = find(AllrecHits[*it].begin(), AllrecHits[*it].end(), recHitRef);
284  if(index != AllrecHits[*it].end())
285  isinsideLayers = true;
286  }
287  return isinsideLayers;
288 }
289 
290 bool RPCCosmicSeedrecHitFinder::isinsideAngleRange(const GlobalVector& lastSegment, const GlobalPoint& lastPosition, const GlobalPoint& currentPosition) {
291 
292  bool isinsideAngle = true;
293  GlobalVector SegVec = currentPosition - lastPosition;
294  if(lastSegment.mag() != 0)
295  if(fabs((lastSegment.phi()-SegVec.phi()).value()) > MaxDeltaPhi)
296  isinsideAngle = false;
297 
298  return isinsideAngle;
299 }
300 
301 bool RPCCosmicSeedrecHitFinder::iscorssEdge(const MuonRecHitPointer& lastrecHitRef, const MuonRecHitPointer& currentrecHitRef) {
302 
303  bool iscorss = false;
304 
305 
306  // Check if 2 recHits corss the inner bounds
307  GlobalPoint lastPosition = lastrecHitRef->globalPosition();
308  GlobalPoint currentPosition = currentrecHitRef->globalPosition();
309  GlobalPoint testPosition((lastPosition.x()+currentPosition.x())/2, (lastPosition.y()+currentPosition.y())/2, (lastPosition.z()+currentPosition.z())/2);
310  /*
311  for(std::vector<BoundPlane>::const_iterator it = innerBounds.begin(); it != innerBounds.end(); it++) {
312  //SurfaceOrientation::Side TestSide0 = it->side(currentPosition, 0);
313  //SurfaceOrientation::Side TestSide1 = it->side(lastPosition, 0);
314  SurfaceOrientation::Side TestSide = it->side(testPosition, 0);
315  //cout << "Side of currentPosition: " << TestSide0 << ", Side of lastPosition: " << TestSide1 << ", Side of middlePosition: " << TestSide << endl;
316  //if(TestSide != SurfaceOrientation::positiveSide)
317  //iscorss = true;
318  }
319  */
320 
321  // Check when mixLayer is not set
322  if(isLayersmixed == false) {
323  DetId lastId = lastrecHitRef->geographicalId();
324  RPCDetId lastRPCId(lastId.rawId());
325  int lastRegion = lastRPCId.region();
326  DetId currentId = currentrecHitRef->geographicalId();
327  RPCDetId currentRPCId(currentId.rawId());
328  int currentRegion = currentRPCId.region();
329  // Check if 2 recHits from different regions
330  if(lastRegion != currentRegion)
331  iscorss = true;
332  }
333 
334  return iscorss;
335 }
336 
338 
339  if(therecHits.size() >= 3) {
340  theSeed->setrecHits(therecHits);
341  theSeed->seed();
342  }
343  else
344  cout << "Layer less than 3, could not fill a RPCSeedFinder" << endl;
345 }
T getParameter(std::string const &) const
int i
Definition: DBlmapReader.cc:9
void setEdge(const edm::EventSetup &iSetup)
void setInput(MuonRecHitContainer(&recHits)[12])
bool iscorssEdge(const MuonRecHitPointer &lastrecHitRef, const MuonRecHitPointer &currentrecHitRef)
Geom::Phi< T > phi() const
Definition: PV3DBase.h:68
T y() const
Definition: PV3DBase.h:62
#define abs(x)
Definition: mlp_lapack.h:159
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:7
#define RPCLayerNumber
uint32_t rawId() const
get the raw id
Definition: DetId.h:45
int clusterSize() const
Definition: RPCRecHit.h:111
T mag() const
Definition: PV3DBase.h:66
bool isinsideAngleRange(const GlobalVector &lastSegment, const GlobalPoint &lastPosition, const GlobalPoint &currentPosition)
void clear(CLHEP::HepGenMatrix &m)
Helper function: Reset all elements of a matrix to 0.
Definition: matutil.cc:168
T z() const
Definition: PV3DBase.h:63
Region
Definition: Region.h:7
#define end
Definition: vmac.h:38
virtual TrackingRecHit * clone() const =0
Definition: DetId.h:20
void setLayers(const std::vector< unsigned int > &Layers)
const T & get() const
Definition: EventSetup.h:55
bool isouterLayer(const MuonRecHitPointer &recHitRef)
#define EachEndcapLayerNumber
#define begin
Definition: vmac.h:31
void setOutput(RPCSeedFinder *Seed)
MuonTransientTrackingRecHit::MuonRecHitContainer MuonRecHitContainer
int BunchX() const
Definition: RPCRecHit.h:103
#define BarrelLayerNumber
tuple cout
Definition: gather_cfg.py:121
T x() const
Definition: PV3DBase.h:61
bool complete(const GlobalVector &lastSegment, const MuonRecHitPointer &lastrecHitRef)
Global3DVector GlobalVector
Definition: GlobalVector.h:10
void configure(const edm::ParameterSet &iConfig)
int region() const
Region id: 0 for Barrel, +/-1 For +/- Endcap.
Definition: RPCDetId.h:67