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 
6 #include "GEMMaskReClusterizer.h"
7 
8 
9 
11 {
12 
13 }
14 
15 
17 {
18 
19 }
20 
21 
23  GEMClusterContainer& initClusters,
24  const EtaPartitionMask& mask)
25 {
26 
27  GEMClusterContainer finClusters;
28  GEMCluster prev;
29 
30  unsigned int j = 0;
31 
32 
33  for (GEMClusterContainer::const_iterator i = initClusters.begin(); i != initClusters.end(); i++ ) {
34 
35  GEMCluster cl = *i;
36 
37  if ( i == initClusters.begin() ) {
38  prev = cl;
39  j++;
40  if ( j == initClusters.size() ) {
41  finClusters.insert(prev);
42  }
43  else if ( j < initClusters.size() ) {
44  continue;
45  }
46  }
47 
48 
49  if ( ((prev.firstStrip()-cl.lastStrip()) == 2 && this->get(mask,(cl.lastStrip()+1)))
50  && (cl.bx() == prev.bx()) ) {
51 
52  GEMCluster merged(cl.firstStrip(),prev.lastStrip(),cl.bx());
53  prev = merged;
54  j++;
55  if ( j == initClusters.size() ) {
56  finClusters.insert(prev);
57  }
58  }
59 
60  else {
61 
62  j++;
63  if ( j < initClusters.size() ) {
64  finClusters.insert(prev);
65  prev = cl;
66  }
67  if ( j == initClusters.size() ) {
68  finClusters.insert(prev);
69  finClusters.insert(cl);
70  }
71  }
72 
73  }
74 
75  return finClusters;
76 
77 }
78 
79 
80 
81 int GEMMaskReClusterizer::get(const EtaPartitionMask& mask, int strip)
82 {
83 
84  if ( mask.test(strip-1) ) return 1;
85  else return 0;
86 
87 }
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