CMS 3D CMS Logo

DDGEMAngular.h
Go to the documentation of this file.
1 #ifndef MuonCommonData_DDGEMAngular_h
2 #define MuonCommonData_DDGEMAngular_h
3 
4 #include <map>
5 #include <string>
6 #include <vector>
9 
10 class DDGEMAngular : public DDAlgorithm {
11  public:
12  //Constructor and Destructor
13  DDGEMAngular();
14  ~DDGEMAngular() override;
15 
16  void initialize(const DDNumericArguments & nArgs,
17  const DDVectorArguments & vArgs,
18  const DDMapArguments & mArgs,
19  const DDStringArguments & sArgs,
20  const DDStringVectorArguments & vsArgs) override;
21 
22  void execute(DDCompactView& cpv) override;
23 
24 private:
25 
26  double startAngle; //Start angle
27  double stepAngle; //Step angle
28  int invert; //inverted or forward
29  double rPos; //Radial position of center
30  double zoffset; //Offset in z
31  int n; //Mumber of copies
32  int startCopyNo; //Start copy Number
33  int incrCopyNo; //Increment copy Number
34 
35  std::string rotns; //Namespace for rotation matrix
36  std::string idNameSpace; //Namespace of this and ALL sub-parts
37  std::string childName; //Children name
38 };
39 
40 #endif
~DDGEMAngular() override
Definition: DDGEMAngular.cc:20
std::string childName
Definition: DDGEMAngular.h:37
std::string rotns
Definition: DDGEMAngular.h:35
void initialize(const DDNumericArguments &nArgs, const DDVectorArguments &vArgs, const DDMapArguments &mArgs, const DDStringArguments &sArgs, const DDStringVectorArguments &vsArgs) override
Definition: DDGEMAngular.cc:22
std::string idNameSpace
Definition: DDGEMAngular.h:36
type of data representation of DDCompactView
Definition: DDCompactView.h:90
void execute(DDCompactView &cpv) override
Definition: DDGEMAngular.cc:53
double stepAngle
Definition: DDGEMAngular.h:27
double zoffset
Definition: DDGEMAngular.h:30
double startAngle
Definition: DDGEMAngular.h:26