| 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 | // ********************************************************************
|
|---|
| 27 | // * *
|
|---|
| 28 | // * cosmicray_charging advanced example for Geant4 *
|
|---|
| 29 | // * (adapted simulation of test-mass charging in the LISA mission) *
|
|---|
| 30 | // * *
|
|---|
| 31 | // * Henrique Araujo (h.araujo@imperial.ac.uk) & Peter Wass *
|
|---|
| 32 | // * Imperial College London *
|
|---|
| 33 | // * *
|
|---|
| 34 | // ********************************************************************
|
|---|
| 35 |
|
|---|
| 36 | #ifndef LISADetectorConstruction_h
|
|---|
| 37 | #define LISADetectorConstruction_h 1
|
|---|
| 38 |
|
|---|
| 39 | #include "G4VUserDetectorConstruction.hh"
|
|---|
| 40 |
|
|---|
| 41 | #include "G4UserLimits.hh"
|
|---|
| 42 |
|
|---|
| 43 | #include "G4Material.hh"
|
|---|
| 44 | #include "G4MaterialTable.hh"
|
|---|
| 45 | #include "G4MaterialPropertiesTable.hh"
|
|---|
| 46 | #include "G4Element.hh"
|
|---|
| 47 | #include "G4Isotope.hh"
|
|---|
| 48 | #include "G4UnitsTable.hh"
|
|---|
| 49 |
|
|---|
| 50 | #include "G4Box.hh"
|
|---|
| 51 | #include "G4Tubs.hh"
|
|---|
| 52 | #include "G4Sphere.hh"
|
|---|
| 53 | #include "G4Cons.hh"
|
|---|
| 54 | #include "G4Trap.hh"
|
|---|
| 55 | #include "G4Torus.hh"
|
|---|
| 56 | #include "G4Trd.hh"
|
|---|
| 57 | #include "G4VSolid.hh"
|
|---|
| 58 | #include "G4UnionSolid.hh"
|
|---|
| 59 | #include "G4SubtractionSolid.hh"
|
|---|
| 60 |
|
|---|
| 61 | #include "G4ThreeVector.hh"
|
|---|
| 62 | #include "G4RotationMatrix.hh"
|
|---|
| 63 | #include "G4Transform3D.hh"
|
|---|
| 64 |
|
|---|
| 65 | #include "G4PVPlacement.hh"
|
|---|
| 66 | #include "G4LogicalVolume.hh"
|
|---|
| 67 | #include "G4VPhysicalVolume.hh"
|
|---|
| 68 |
|
|---|
| 69 | #include "G4Region.hh"
|
|---|
| 70 |
|
|---|
| 71 | #include "G4VisAttributes.hh"
|
|---|
| 72 | #include "G4Colour.hh"
|
|---|
| 73 |
|
|---|
| 74 | #include "G4ios.hh"
|
|---|
| 75 | #include "globals.hh"
|
|---|
| 76 |
|
|---|
| 77 | #include <cmath>
|
|---|
| 78 |
|
|---|
| 79 |
|
|---|
| 80 | class LISADetectorConstruction : public G4VUserDetectorConstruction {
|
|---|
| 81 |
|
|---|
| 82 | public:
|
|---|
| 83 | LISADetectorConstruction();
|
|---|
| 84 | ~LISADetectorConstruction();
|
|---|
| 85 |
|
|---|
| 86 | G4VPhysicalVolume* Construct();
|
|---|
| 87 |
|
|---|
| 88 | private:
|
|---|
| 89 | void ConstructMaterials();
|
|---|
| 90 | G4VPhysicalVolume* ConstructDetector();
|
|---|
| 91 |
|
|---|
| 92 |
|
|---|
| 93 | private:
|
|---|
| 94 | // pointers to materials
|
|---|
| 95 | G4Material *vacuum;
|
|---|
| 96 | G4Material *Al6061;
|
|---|
| 97 | G4Material *AlHoneycomb;
|
|---|
| 98 | G4Material *Scell;
|
|---|
| 99 | G4Material *MLImat;
|
|---|
| 100 | G4Material *molybdenum;
|
|---|
| 101 | G4Material *TiAlloy;
|
|---|
| 102 | G4Material *gold;
|
|---|
| 103 | G4Material *AuPt;
|
|---|
| 104 | G4Material *CFRP;
|
|---|
| 105 | G4Material *ULEglass;
|
|---|
| 106 | G4Material *SHAPAL;
|
|---|
| 107 | G4Material *SiC;
|
|---|
| 108 | G4Material *foam;
|
|---|
| 109 |
|
|---|
| 110 |
|
|---|
| 111 | };
|
|---|
| 112 |
|
|---|
| 113 | #endif
|
|---|
| 114 |
|
|---|