CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
GEMMaskReClusterizer.cc
Go to the documentation of this file.
1 
8 #include "GEMMaskReClusterizer.h"
9 
10 
11 
13 {
14 
15 }
16 
17 
19 {
20 
21 }
22 
23 
25  GEMClusterContainer& initClusters,
26  const EtaPartitionMask& mask)
27 {
28 
29  GEMClusterContainer finClusters;
30  GEMCluster prev;
31 
32  unsigned int j = 0;
33 
34 
35  for (GEMClusterContainer::const_iterator i = initClusters.begin(); i != initClusters.end(); i++ ) {
36 
37  GEMCluster cl = *i;
38 
39  if ( i == initClusters.begin() ) {
40  prev = cl;
41  j++;
42  if ( j == initClusters.size() ) {
43  finClusters.insert(prev);
44  }
45  else if ( j < initClusters.size() ) {
46  continue;
47  }
48  }
49 
50 
51  if ( ((prev.firstStrip()-cl.lastStrip()) == 2 && this->get(mask,(cl.lastStrip()+1)))
52  && (cl.bx() == prev.bx()) ) {
53 
54  GEMCluster merged(cl.firstStrip(),prev.lastStrip(),cl.bx());
55  prev = merged;
56  j++;
57  if ( j == initClusters.size() ) {
58  finClusters.insert(prev);
59  }
60  }
61 
62  else {
63 
64  j++;
65  if ( j < initClusters.size() ) {
66  finClusters.insert(prev);
67  prev = cl;
68  }
69  if ( j == initClusters.size() ) {
70  finClusters.insert(prev);
71  finClusters.insert(cl);
72  }
73  }
74 
75  }
76 
77  return finClusters;
78 
79 }
80 
81 
82 
83 int GEMMaskReClusterizer::get(const EtaPartitionMask& mask, int strip)
84 {
85 
86  if ( mask.test(strip-1) ) return 1;
87  else return 0;
88 
89 }
int i
Definition: DBlmapReader.cc:9
int get(const EtaPartitionMask &, int)
GEMClusterContainer doAction(const GEMDetId &, GEMClusterContainer &, const EtaPartitionMask &)
std::set< GEMCluster > GEMClusterContainer
std::bitset< maskSIZE > EtaPartitionMask
int j
Definition: DBlmapReader.cc:9
int lastStrip() const
Definition: GEMCluster.cc:27
int bx() const
Definition: GEMCluster.cc:39
int firstStrip() const
Definition: GEMCluster.cc:21