CMS 3D CMS Logo

RPCMaskReClusterizer.cc
Go to the documentation of this file.
1 
5 #include "RPCCluster.h"
6 #include "RPCClusterizer.h"
7 #include "RPCMaskReClusterizer.h"
8 
10  RPCClusterContainer& initClusters,
11  const RollMask& mask) const
12 {
13  RPCClusterContainer finClusters;
14  if ( initClusters.empty() ) return finClusters;
15 
16  RPCCluster prev = *initClusters.begin();
17  for ( auto cl = std::next(initClusters.begin()); cl != initClusters.end(); ++cl ) {
18  // Merge this cluster if it is adjacent by 1 masked strip
19  // Note that the RPCClusterContainer collection is sorted in DECREASING ORDER of strip #
20  // So the prev. cluster is placed after the current cluster (check the < operator of RPCCluster carefully)
21  if ( (prev.firstStrip()-cl->lastStrip()) == 2 and
22  this->get(mask, cl->lastStrip()+1) and prev.bx() == cl->bx() ) {
23  RPCCluster merged(cl->firstStrip(), prev.lastStrip(), cl->bx());
24  prev = merged;
25  }
26  else {
27  finClusters.insert(prev);
28  prev = *cl;
29  }
30  }
31 
32  // Finalize by putting the last cluster to the collection
33  finClusters.insert(prev);
34 
35  return finClusters;
36 
37 }
38 
40 {
41  return mask.test(strip-1);
42 }
bool get(const RollMask &mask, int strip) const
std::bitset< maskSIZE > RollMask
Definition: RPCRollMask.h:7
RPCClusterContainer doAction(const RPCDetId &id, RPCClusterContainer &initClusters, const RollMask &mask) const
int bx() const
Definition: RPCCluster.cc:25
int lastStrip() const
Definition: RPCCluster.cc:23
int firstStrip() const
Definition: RPCCluster.cc:22
std::set< RPCCluster > RPCClusterContainer