103 lines
3.1 KiB
C++
103 lines
3.1 KiB
C++
//
|
|
// ********************************************************************
|
|
// * DISCLAIMER *
|
|
// * *
|
|
// * The following disclaimer summarizes all the specific disclaimers *
|
|
// * of contributors to this software. The specific disclaimers,which *
|
|
// * govern, are listed with their locations in: *
|
|
// * http://cern.ch/geant4/license *
|
|
// * *
|
|
// * 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. *
|
|
// * *
|
|
// * This code implementation is the intellectual property of the *
|
|
// * GEANT4 collaboration. *
|
|
// * By copying, distributing or modifying the Program (or any work *
|
|
// * based on the Program) you indicate your acceptance of this *
|
|
// * statement, and all its terms. *
|
|
// ********************************************************************
|
|
//
|
|
#ifndef LXeMainVolume_H
|
|
#define LXeMainVolume_H 1
|
|
|
|
#include "G4PVPlacement.hh"
|
|
#include "G4Box.hh"
|
|
#include "G4Tubs.hh"
|
|
#include "G4Sphere.hh"
|
|
#include "G4Material.hh"
|
|
#include "G4LogicalVolume.hh"
|
|
#include "G4OpticalSurface.hh"
|
|
|
|
#include "LXeDetectorConstruction.hh"
|
|
|
|
class LXeMainVolume : public G4PVPlacement
|
|
{
|
|
public:
|
|
LXeMainVolume(G4RotationMatrix *pRot,
|
|
const G4ThreeVector &tlate,
|
|
G4LogicalVolume *pMotherLogical,
|
|
G4bool pMany,
|
|
G4int pCopyNo,
|
|
LXeDetectorConstruction* c);
|
|
private:
|
|
void VisAttributes();
|
|
void SurfaceProperties();
|
|
|
|
void PlacePMTs(G4LogicalVolume* pmt_Log,
|
|
G4RotationMatrix* rot, G4double &a, G4double &b, G4double da,
|
|
G4double db, G4double amin, G4double bmin, G4int na, G4int nb,
|
|
G4double &x, G4double &y, G4double &z, G4int &k,LXePMTSD* sd);
|
|
|
|
void CopyValues();
|
|
|
|
G4bool updated;
|
|
|
|
LXeDetectorConstruction* constructor;
|
|
|
|
G4double scint_x;
|
|
G4double scint_y;
|
|
G4double scint_z;
|
|
G4double d_mtl;
|
|
G4int nx;
|
|
G4int ny;
|
|
G4int nz;
|
|
G4double outerRadius_pmt;
|
|
G4bool sphereOn;
|
|
G4double refl;
|
|
|
|
//Basic Volumes
|
|
//
|
|
G4Box* scint_box;
|
|
G4Box* housing_box;
|
|
G4Tubs* pmt;
|
|
G4Tubs* photocath;
|
|
G4Sphere* sphere;
|
|
|
|
|
|
// Logical volumes
|
|
//
|
|
G4LogicalVolume* scint_log;
|
|
static G4LogicalVolume* housing_log;
|
|
G4LogicalVolume* pmt_log;
|
|
G4LogicalVolume* photocath_log;
|
|
G4LogicalVolume* sphere_log;
|
|
|
|
// Physical volumes
|
|
//
|
|
G4VPhysicalVolume* scint_phys;
|
|
//keeping pointers to these is pointless really since there are many of them
|
|
//but I'm doing it to be consistent
|
|
G4VPhysicalVolume* pmt_phys;
|
|
G4VPhysicalVolume* photocath_phys;
|
|
G4VPhysicalVolume* sphere_phys;
|
|
|
|
//Sensitive Detectors
|
|
static LXeScintSD* scint_SD;
|
|
static LXePMTSD* pmt_SD;
|
|
};
|
|
|
|
#endif
|