CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CSCSegtoRPC.h
Go to the documentation of this file.
1 #ifndef CSCSEGTORPC_H
2 #define CSCSEGTORPC_H
3 
9 
10 #include <memory>
11 
12 class CSCSegtoRPC {
13 public:
14  CSCSegtoRPC(CSCSegmentCollection const* allCSCSegments, edm::EventSetup const& iSetup, bool debug, double eyr);
15  ~CSCSegtoRPC();
16  std::unique_ptr<RPCRecHitCollection> && thePoints(){ return std::move(_ThePoints); }
17 
18 private:
19  std::unique_ptr<RPCRecHitCollection> _ThePoints;
21  bool inclcsc;
22  double MaxD;
23 };
24 
25 #endif
double MaxD
Definition: CSCSegtoRPC.h:22
std::unique_ptr< RPCRecHitCollection > _ThePoints
Definition: CSCSegtoRPC.h:19
bool inclcsc
Definition: CSCSegtoRPC.h:21
def move
Definition: eostools.py:510
CSCSegtoRPC(CSCSegmentCollection const *allCSCSegments, edm::EventSetup const &iSetup, bool debug, double eyr)
Definition: CSCSegtoRPC.cc:15
#define debug
Definition: HDRShower.cc:19
edm::OwnVector< RPCRecHit > RPCPointVector
Definition: CSCSegtoRPC.h:20
std::unique_ptr< RPCRecHitCollection > && thePoints()
Definition: CSCSegtoRPC.h:16