CMS 3D CMS Logo

RPCRollSpecs.h
Go to the documentation of this file.
1 #ifndef Geometry_RPCSimAlgo_RPCRollSpecs_H
2 #define Geometry_RPCSimAlgo_RPCRollSpecs_H
3 
11 #include <vector>
12 #include <string>
13 
14 class StripTopology;
15 
17 
18 class RPCRollSpecs : public GeomDetType {
19 public:
20  typedef std::vector<float> RPCSpecs;
21 
22  RPCRollSpecs(SubDetector rss, const std::string& name, const RPCSpecs& pars);
23 
24  ~RPCRollSpecs() override;
25 
26  const Topology& topology() const override;
27 
28  const StripTopology& specificTopology() const;
29 
30  const std::string& detName() const;
31 
32 private:
34  std::vector<float> _p;
36 };
37 #endif
std::string _n
Definition: RPCRollSpecs.h:35
~RPCRollSpecs() override
Definition: RPCRollSpecs.cc:30
RPCRollSpecs(SubDetector rss, const std::string &name, const RPCSpecs &pars)
Definition: RPCRollSpecs.cc:7
const StripTopology & specificTopology() const
Definition: RPCRollSpecs.cc:38
StripTopology * _top
Definition: RPCRollSpecs.h:33
const std::string & name() const
Definition: GeomDetType.h:19
const Topology & topology() const override
Definition: RPCRollSpecs.cc:36
const std::string & detName() const
Definition: RPCRollSpecs.cc:40
std::vector< float > RPCSpecs
Definition: RPCRollSpecs.h:20
std::vector< float > _p
Definition: RPCRollSpecs.h:34