Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
examples/extended/geometry/transforms/include/DetectorConstruction.hh
Go to the documentation of this file.
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
26 // $Id: DetectorConstruction.hh 68023 2013-03-13 13:40:16Z gcosmo $
27 //
28 /// \file DetectorConstruction.hh
29 /// \brief Definition of the DetectorConstruction class
30 
31 #ifndef DetectorConstruction_h
32 #define DetectorConstruction_h 1
33 
35 
36 #include "globals.hh"
37 
38 class DetectorMessenger;
39 class G4LogicalVolume;
40 class G4VPhysicalVolume;
41 
42 /// Detector construction class to demonstrate various ways of placement
43 ///
44 /// The geometry setup consists of two trapezoid volumes which are placed
45 /// in a world so that their axial symmetry axis is in given theta and phi
46 /// polar angles. The various ways of placement are implemented in the
47 /// DetectorConstruction class in the following private functions:
48 /// - PlaceWithDirectMatrix()
49 /// - PlaceWithInverseMatrix()
50 /// - PlaceWithAxialRotations()
51 /// - PlaceWithEulerAngles()
52 /// - PlaceWithReflections()
53 ///
54 /// which are then called from the Construct() function.
55 /// All method defines exactly same geometry except for the placement
56 /// with reflection where trapezoids are placed with their symmetry axis
57 /// in parallel with z-axis in order to make easier to check reflection
58 /// visually.
59 
61 {
62  public:
63  enum EMethod {
69  };
70 
71  public:
74 
75  public:
76  // methods from base class
77  virtual G4VPhysicalVolume* Construct();
78 
79  // set methods
80  void SetMethod(EMethod method);
81 
82  private:
83  // methods
84  void PlaceWithDirectMatrix();
85  void PlaceWithInverseMatrix();
86  void PlaceWithAxialRotations();
87  void PlaceWithEulerAngles();
88  void PlaceWithReflections();
89 
90  // data members
91  DetectorMessenger* fMessenger;
92  EMethod fMethod;
93  G4LogicalVolume* fWorldVolume;
94  G4LogicalVolume* fTrdVolume;
95 };
96 
97 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
98 
99 
100 #endif
101