CMS 3D CMS Logo

DDHCalFibreBundle.h
Go to the documentation of this file.
1 #ifndef HcalAlgo_DDHCalFibreBundle_h
2 #define HcalAlgo_DDHCalFibreBundle_h
3 
4 #include <map>
5 #include <string>
6 #include <vector>
9 
10 class DDHCalFibreBundle : public DDAlgorithm {
11 
12 public:
13  //Constructor and Destructor
15  ~DDHCalFibreBundle() override;
16 
17  void initialize(const DDNumericArguments & nArgs,
18  const DDVectorArguments & vArgs,
19  const DDMapArguments & mArgs,
20  const DDStringArguments & sArgs,
21  const DDStringVectorArguments & vsArgs) override;
22 
23  void execute(DDCompactView& cpv) override;
24 
25 private:
26 
27  std::string idNameSpace; //Namespace of this and ALL sub-parts
28  std::string childPrefix; //Prefix to child name
29  std::string material; //Name of the material for bundles
30  double deltaZ; //Width in Z for mother
31  double deltaPhi; //Width in phi for mother
32  int numberPhi; //Number of sections in phi
33  double tilt; //Tilt angle of the readout box
34  std::vector<double> areaSection; //Area of a bundle
35  std::vector<double> rStart; //Radius at start
36  std::vector<double> rEnd; //Radius at End
37  std::vector<int> bundle; //Bundle to be positioned
38 };
39 
40 #endif
Compact representation of the geometrical detector hierarchy.
Definition: DDCompactView.h:83
~DDHCalFibreBundle() override
void execute(DDCompactView &cpv) override
std::vector< double > areaSection
std::string idNameSpace
std::vector< double > rEnd
std::vector< double > rStart
std::vector< int > bundle
std::string childPrefix
void initialize(const DDNumericArguments &nArgs, const DDVectorArguments &vArgs, const DDMapArguments &mArgs, const DDStringArguments &sArgs, const DDStringVectorArguments &vsArgs) override