| 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 | // $Id: BrachyDetectorConstructionI.hh,v 1.3 2006/06/29 17:31:10 gunter Exp $
|
|---|
| 28 | // GEANT4 tag $Name: $
|
|---|
| 29 | //
|
|---|
| 30 | // ****************************************
|
|---|
| 31 | // * *
|
|---|
| 32 | // * BrachyDetectorConstructionI.hh *
|
|---|
| 33 | // * *
|
|---|
| 34 | // ****************************************
|
|---|
| 35 | //Author: Susanna Guatelli
|
|---|
| 36 | //
|
|---|
| 37 | #ifndef BrachyDetectorConstructionI_H
|
|---|
| 38 | #define BrachyDetectorConstructionI_H 1
|
|---|
| 39 |
|
|---|
| 40 | #include "globals.hh"
|
|---|
| 41 | #include "G4VUserDetectorConstruction.hh"
|
|---|
| 42 | #include "G4LogicalVolume.hh"
|
|---|
| 43 |
|
|---|
| 44 | class G4LogicalVolume;
|
|---|
| 45 | class G4Tubs;
|
|---|
| 46 | class G4Box;
|
|---|
| 47 | class G4Sphere;
|
|---|
| 48 | class G4Tubs;
|
|---|
| 49 | class G4Colour;
|
|---|
| 50 | class G4VPhysicalVolume;
|
|---|
| 51 | class G4VPhysicalVolume;
|
|---|
| 52 | class BrachyMaterial;
|
|---|
| 53 |
|
|---|
| 54 | class BrachyDetectorConstructionI
|
|---|
| 55 | {
|
|---|
| 56 | public:
|
|---|
| 57 | BrachyDetectorConstructionI();
|
|---|
| 58 | ~BrachyDetectorConstructionI();
|
|---|
| 59 | void ConstructIodium(G4VPhysicalVolume*);// Construct iodium source
|
|---|
| 60 |
|
|---|
| 61 | private:
|
|---|
| 62 | //air tub ...
|
|---|
| 63 | G4Tubs* defaultTub;
|
|---|
| 64 | G4LogicalVolume* defaultTubLog;
|
|---|
| 65 | G4VPhysicalVolume* defaultTubPhys;
|
|---|
| 66 |
|
|---|
| 67 | //source titanium capsule ...
|
|---|
| 68 | G4Tubs* capsule ;
|
|---|
| 69 | G4LogicalVolume* capsuleLog;
|
|---|
| 70 | G4VPhysicalVolume* capsulePhys;
|
|---|
| 71 |
|
|---|
| 72 | G4Sphere* capsuleTip;
|
|---|
| 73 | G4LogicalVolume* capsuleTipLog;
|
|---|
| 74 | G4VPhysicalVolume* capsuleTipPhys1;
|
|---|
| 75 | G4VPhysicalVolume* capsuleTipPhys2;
|
|---|
| 76 |
|
|---|
| 77 | //radioactive core ...
|
|---|
| 78 | G4Tubs* iodiumCore;
|
|---|
| 79 | G4LogicalVolume* iodiumCoreLog;
|
|---|
| 80 | G4VPhysicalVolume* iodiumCorePhys;
|
|---|
| 81 |
|
|---|
| 82 | // golden marker ...
|
|---|
| 83 | G4Tubs* marker;
|
|---|
| 84 | G4LogicalVolume* markerLog;
|
|---|
| 85 | G4VPhysicalVolume* markerPhys;
|
|---|
| 86 |
|
|---|
| 87 | BrachyMaterial* pMaterial;
|
|---|
| 88 | };
|
|---|
| 89 | #endif
|
|---|
| 90 |
|
|---|
| 91 |
|
|---|
| 92 |
|
|---|
| 93 |
|
|---|
| 94 |
|
|---|
| 95 |
|
|---|
| 96 |
|
|---|
| 97 |
|
|---|