Files
geant4/examples/advanced/underground_physics/include/DMXDetectorConstruction.hh
T
2016-06-10 12:08:39 +02:00

177 lines
5.8 KiB
C++

//
// ********************************************************************
// * License and Disclaimer *
// * *
// * The Geant4 software is copyright of the Copyright Holders of *
// * the Geant4 Collaboration. It is provided under the terms and *
// * conditions of the Geant4 Software License, included in the file *
// * LICENSE and available at http://cern.ch/geant4/license . These *
// * include a list of copyright holders. *
// * *
// * Neither the authors of this software system, nor their employing *
// * institutes,nor the agencies providing financial support for this *
// * work make any representation or warranty, express or implied, *
// * regarding this software system or assume any liability for its *
// * use. Please see the license in the file LICENSE and URL above *
// * for the full disclaimer and the limitation of liability. *
// * *
// * This code implementation is the result of the scientific and *
// * technical work of the GEANT4 collaboration. *
// * By using, copying, modifying or distributing the software (or *
// * any work based on the software) you agree to acknowledge its *
// * use in resulting scientific publications, and indicate your *
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
//
// --------------------------------------------------------------
// GEANT 4 - Underground Dark Matter Detector Advanced Example
//
// For information related to this code contact: Alex Howard
// e-mail: alexander.howard@cern.ch
// --------------------------------------------------------------
// Comments
//
// Underground Advanced
// by A. Howard and H. Araujo
// (27th November 2001)
//
// DetectorConstruction header
// --------------------------------------------------------------
#ifndef DMXDetectorConstruction_h
#define DMXDetectorConstruction_h 1
#include "G4VUserDetectorConstruction.hh"
#include "globals.hh"
#include "G4Cache.hh"
class G4LogicalVolume;
class G4VPhysicalVolume;
class G4Material;
class G4UserLimits;
class DMXScintSD;
class DMXPmtSD;
class DMXDetectorMessenger;
class DMXDetectorConstruction : public G4VUserDetectorConstruction
{
public:
DMXDetectorConstruction();
~DMXDetectorConstruction();
public:
G4VPhysicalVolume* Construct();
void ConstructSDandField();
void SetRoomEnergyCut(G4double);
void SetEnergyCut(G4double);
void SetTimeCut(G4double);
void SetRoomTimeCut(G4double);
private:
void DefineMaterials();
G4UserLimits* theUserLimitsForRoom;
G4UserLimits* theUserLimitsForDetector;
// G4UserLimits* theUserLimitsForXenon;
G4double theMaxTimeCuts;
G4double theMaxStepSize;
G4double theDetectorStepSize;
G4double theMinEkine;
G4double theRoomMinEkine;
G4double theRoomTimeCut;
#include "DMXDetectorMaterial.ihh" // materials used
G4double sourceZ;
G4LogicalVolume* world_log; // pointers
G4VPhysicalVolume* world_phys;
#include "DMXDetectorRoom.ihh"
G4LogicalVolume* lab_log;
G4VPhysicalVolume* lab_phys;
G4LogicalVolume* LN2jacket_log;
G4VPhysicalVolume* LN2jacket_phys;
G4LogicalVolume* LN2vacuum_log;
G4VPhysicalVolume* LN2vacuum_phys;
G4LogicalVolume* LN2vessel_log;
G4VPhysicalVolume* LN2vessel_phys;
G4LogicalVolume* LN2_log;
G4VPhysicalVolume* LN2_phys;
G4LogicalVolume* jacket_log;
G4VPhysicalVolume* jacket_phys;
G4LogicalVolume* jacketflange_log;
G4VPhysicalVolume* topjacketflange_phys;
G4VPhysicalVolume* bottomjacketflange_phys;
G4LogicalVolume* vacuum_log;
G4VPhysicalVolume* vacuum_phys;
G4LogicalVolume* copper_log;
G4VPhysicalVolume* copper_phys;
G4LogicalVolume* coppertop_log;
G4VPhysicalVolume* coppertop_phys;
G4LogicalVolume* vessel_log;
G4VPhysicalVolume* vessel_phys;
G4LogicalVolume* vesseltop_log1;
G4VPhysicalVolume* vesseltop_phys1;
G4LogicalVolume* vesseltop_log2;
G4VPhysicalVolume* vesseltop_phys2;
G4LogicalVolume* vesselbottom_log1;
G4VPhysicalVolume* vesselbottom_phys1;
G4LogicalVolume* vesselbottom_log2;
G4VPhysicalVolume* vesselbottom_phys2;
G4LogicalVolume* pmtvesselbottom_log1;
G4VPhysicalVolume* pmtvesselbottom_phys1;
G4LogicalVolume* pmtvesselbottom_log2;
G4VPhysicalVolume* pmtvesselbottom_phys2;
G4LogicalVolume* GXe_log;
G4VPhysicalVolume* GXe_phys;
G4LogicalVolume* gaslag_log;
G4VPhysicalVolume* gaslag_phys;
G4LogicalVolume* CuShield_log;
G4VPhysicalVolume* CuShield_phys;
G4LogicalVolume* LXe_log;
G4VPhysicalVolume* LXe_phys;
G4LogicalVolume* liqLag_log;
G4VPhysicalVolume* liqLag_phys;
G4LogicalVolume* alpha_log;
G4VPhysicalVolume* alpha_phys;
G4LogicalVolume* americium_log;
G4VPhysicalVolume* americium_phys;
G4LogicalVolume* ring_log;
G4VPhysicalVolume* ring_phys_gas[2];
G4VPhysicalVolume* ring_phys_liq[6];
G4LogicalVolume* mirror_log;
G4VPhysicalVolume* mirror_phys;
G4LogicalVolume* grid1_log;
G4VPhysicalVolume* grid1_phys;
G4LogicalVolume* grid2_log;
G4VPhysicalVolume* grid2_phys;
G4LogicalVolume* pmt_log;
G4VPhysicalVolume* pmt_phys;
G4LogicalVolume* phcath_log;
G4VPhysicalVolume* phcath_phys;
G4Cache<DMXScintSD*> LXeSD; //pointer to sensitive detectors
G4Cache<DMXPmtSD*> pmtSD;
// pointer to the Detector Messenger:
DMXDetectorMessenger* detectorMessenger;
};
#endif