CMS 3D CMS Logo

RPCHitCleaner.h
Go to the documentation of this file.
1 //-------------------------------------------------
2 //
3 // Class: RPCHitCleaner
4 //
5 // RPCHitCleaner
6 //
7 //
8 // Author :
9 // G. Flouris U Ioannina Feb. 2015
10 //--------------------------------------------------
11 
12 #ifndef L1T_TwinMuxRPC_HITCLEANER_H
13 #define L1T_TwinMuxRPC_HITCLEANER_H
14 
16 
19 
26 
27 #include <iostream>
28 
30 public:
31  RPCHitCleaner(RPCDigiCollection const& inrpcDigis);
32 
33  void run(const edm::EventSetup& c);
34 
37 
38  struct detId_Ext {
40  int bx;
41  int strip;
42  bool const operator<(const detId_Ext& o) const {
43  return strip < o.strip || (strip == o.strip && detid < o.detid) ||
44  (bx < o.bx && strip == o.strip && detid == o.detid);
45  }
46  };
47 
48 private:
53 };
54 #endif
void run(const edm::EventSetup &c)
bool const operator<(const detId_Ext &o) const
Definition: RPCHitCleaner.h:42
RPCHitCleaner(RPCDigiCollection const &inrpcDigis)
RPCDigiCollection const & getRPCCollection()
Return Output RPCCollection.
Definition: RPCHitCleaner.h:36
RPCDigiCollection m_outrpcDigis
Output.
Definition: RPCHitCleaner.h:52
RPCDigiCollection const & m_inrpcDigis
Input.
Definition: RPCHitCleaner.h:50