Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-02-23 09:19:27

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 // Code developed by: S. Guatelli, D. Cutajar, J. Poder, 
0027 //Centre For Medical Radiation Physics, University of Wollongong
0028 //
0029 //
0030 //    ******************************************
0031 //    *                                        *
0032 //    *    BrachyDetectorConstructionFlexi.hh  *
0033 //    *                                        *
0034 //    ******************************************
0035 //
0036 // 
0037 //
0038 
0039 #ifndef BrachyDetectorConstructionFlexi_H
0040 #define BrachyDetectorConstructionFlexi_H 1
0041 
0042 #include "globals.hh"
0043 #include "G4VUserDetectorConstruction.hh"
0044 
0045 class G4LogicalVolume;
0046 class G4Tubs;
0047 class G4Cons;
0048 class G4VPhysicalVolume;
0049 class G4VisAttributes;
0050 
0051 class BrachyDetectorConstructionFlexi
0052 {
0053 public:
0054    explicit BrachyDetectorConstructionFlexi();
0055   ~BrachyDetectorConstructionFlexi()=default;
0056 
0057   void  ConstructFlexi(G4VPhysicalVolume*);
0058   // Model the Flexi iridium source
0059 
0060   void  CleanFlexi(); 
0061   // Clean the Iridium source in the experimental set-up
0062 
0063 private:   
0064   G4Tubs* fSteelShell;
0065   G4LogicalVolume* fLogicalSteelShell;    
0066   G4VPhysicalVolume* fPhysicalSteelShell;
0067 
0068   G4Tubs* fAirGap;
0069   G4LogicalVolume* fLogicalAirGap;
0070   G4VPhysicalVolume* fPhysicalAirGap;
0071 
0072   G4Tubs* fEnd1SteelShell;
0073   G4LogicalVolume* fLogicalEnd1SteelShell;
0074   G4VPhysicalVolume* fPhysicalEnd1SteelShell;
0075 
0076   G4Cons* fEnd2SteelShell;
0077   G4LogicalVolume* fLogicalEnd2SteelShell;
0078   G4VPhysicalVolume* fPhysicalEnd2SteelShell;
0079 
0080   G4Tubs* fCable;
0081   G4LogicalVolume* fLogicalCable;
0082   G4VPhysicalVolume* fPhysicalCable;
0083     
0084   G4Tubs* fIridiumCore;
0085   G4LogicalVolume* fLogicalIridiumCore;
0086   G4VPhysicalVolume* fPhysicalIridiumCore;
0087 
0088   G4VisAttributes* fSteelAttributes;
0089   G4VisAttributes* fEndAttributes;
0090   G4VisAttributes* fSimpleIridiumVisAtt;
0091 };
0092 #endif
0093 
0094 
0095 
0096 
0097 
0098 
0099 
0100