Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-05-17 07:42:11

0001 //
0002 // ********************************************************************
0003 // * License and Disclaimer                                           *
0004 // *                                                                  *
0005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
0006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
0007 // * conditions of the Geant4 Software License,  included in the file *
0008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
0009 // * include a list of copyright holders.                             *
0010 // *                                                                  *
0011 // * Neither the authors of this software system, nor their employing *
0012 // * institutes,nor the agencies providing financial support for this *
0013 // * work  make  any representation or  warranty, express or implied, *
0014 // * regarding  this  software system or assume any liability for its *
0015 // * use.  Please see the license in the file  LICENSE  and URL above *
0016 // * for the full disclaimer and the limitation of liability.         *
0017 // *                                                                  *
0018 // * This  code  implementation is the result of  the  scientific and *
0019 // * technical work of the GEANT4 collaboration.                      *
0020 // * By using,  copying,  modifying or  distributing the software (or *
0021 // * any work based  on the software)  you  agree  to acknowledge its *
0022 // * use  in  resulting  scientific  publications,  and indicate your *
0023 // * acceptance of all terms of the Geant4 Software license.          *
0024 // ********************************************************************
0025 //
0026 /// \file RE05CalorimeterParallelWorld.cc
0027 /// \brief Implementation of the RE05CalorimeterParallelWorld class
0028 
0029 #include "RE05CalorimeterParallelWorld.hh"
0030 
0031 #include "RE05CalorimeterSD.hh"
0032 
0033 #include "G4Box.hh"
0034 #include "G4LogicalVolume.hh"
0035 #include "G4Material.hh"
0036 #include "G4PVPlacement.hh"
0037 #include "G4PVReplica.hh"
0038 #include "G4SDManager.hh"
0039 #include "G4SystemOfUnits.hh"
0040 #include "G4ThreeVector.hh"
0041 #include "G4Tubs.hh"
0042 #include "G4VPhysicalVolume.hh"
0043 #include "G4VisAttributes.hh"
0044 
0045 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0046 
0047 RE05CalorimeterParallelWorld::RE05CalorimeterParallelWorld(G4String& parallelWorldName)
0048   : G4VUserParallelWorld(parallelWorldName)
0049 {
0050 #include "RE05DetectorParameterDef.icc"
0051 }
0052 
0053 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0054 
0055 RE05CalorimeterParallelWorld::~RE05CalorimeterParallelWorld() {}
0056 
0057 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0058 
0059 void RE05CalorimeterParallelWorld::Construct()
0060 {
0061   G4Material* dummyMat = 0;
0062 
0063   // the ReadOut World:
0064   G4VPhysicalVolume* ROWorldPhys = GetWorld();
0065   G4LogicalVolume* ROWorldLog = ROWorldPhys->GetLogicalVolume();
0066 
0067   // Calorimeter volume:
0068   G4VSolid* caloROtub = new G4Tubs("caloROtub", fCaloTubs_rmin, fCaloTubs_rmax, fCaloTubs_dz,
0069                                    fCaloTubs_sphi, fCaloTubs_dphi);
0070   G4LogicalVolume* caloROlog = new G4LogicalVolume(caloROtub, dummyMat, "caloROlogical", 0, 0, 0);
0071   //  G4VPhysicalVolume* caloROphys =
0072   new G4PVPlacement(0, G4ThreeVector(), caloROlog, "calROphysical", ROWorldLog, false, 0);
0073 
0074   // -------------------------------
0075   // Calorimeter readout division:
0076   // -------------------------------
0077   // Phi division first: 48 sectors
0078   G4VSolid* caloROphiDivisionTub = new G4Tubs("caloROphiDivision", fCaloCell_rmin, fCaloCell_rmax,
0079                                               fCaloCell_dz, fCaloCell_sphi, fCaloCell_dphi);
0080   G4LogicalVolume* caloROphiDivisionLog =
0081     new G4LogicalVolume(caloROphiDivisionTub, dummyMat, "caloROphiDivisionLogical", 0, 0, 0);
0082   //  G4VPhysicalVolume* caloROphiDivisionPhys =
0083   new G4PVReplica("caloROphiDivisionPhysical", caloROphiDivisionLog, caloROlog, kPhi,
0084                   fSegmentsinPhi, fCaloCell_dphi);
0085   // then z division: 20 slices:
0086   G4VSolid* caloROcellTub = new G4Tubs("caloROcellTub", fCaloRing_rmin, fCaloRing_rmax,
0087                                        fCaloRing_dz, fCaloRing_sphi, fCaloRing_dphi);
0088   G4LogicalVolume* caloROcellLog =
0089     new G4LogicalVolume(caloROcellTub, dummyMat, "caloROcellLogical", 0, 0, 0);
0090   //  G4VPhysicalVolume * caloROcellPhys =
0091   new G4PVReplica("caloROcellPhysical", caloROcellLog, caloROphiDivisionLog, kZAxis, fSegmentsinZ,
0092                   2. * fCaloRing_dz);
0093 }
0094 
0095 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
0096 
0097 void RE05CalorimeterParallelWorld::ConstructSD()
0098 {
0099   G4String calorimeterSDname = "/mydet/calorimeter";
0100   RE05CalorimeterSD* calorimeterSD = new RE05CalorimeterSD(calorimeterSDname);
0101   G4SDManager::GetSDMpointer()->AddNewDetector(calorimeterSD);
0102   SetSensitiveDetector("caloROcellLogical", calorimeterSD);
0103 }
0104 
0105 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......