| 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 | // --------------------------------------------------------------
|
|---|
| 28 | // GEANT 4 - ULTRA experiment example
|
|---|
| 29 | // --------------------------------------------------------------
|
|---|
| 30 | //
|
|---|
| 31 | // Code developed by:
|
|---|
| 32 | // B. Tome, M.C. Espirito-Santo, A. Trindade, P. Rodrigues
|
|---|
| 33 | //
|
|---|
| 34 | // ****************************************************
|
|---|
| 35 | // * UltraPrimaryGeneratorAction.cc
|
|---|
| 36 | // ****************************************************
|
|---|
| 37 | //
|
|---|
| 38 | // Class used in the definition of the optical photons source
|
|---|
| 39 | // A plane, circular source is used. Depending on the source position, optical
|
|---|
| 40 | // photons may reach the UVscope directly or after reflection. By default direct
|
|---|
| 41 | // incidence is used. The source parameters can be set directly in this class
|
|---|
| 42 | // or through the GeneralParticleSource messenger class.
|
|---|
| 43 | //
|
|---|
| 44 | #include "UltraPrimaryGeneratorAction.hh"
|
|---|
| 45 |
|
|---|
| 46 | #include "G4Event.hh"
|
|---|
| 47 | #include "G4GeneralParticleSource.hh"
|
|---|
| 48 | #include "G4SPSAngDistribution.hh"
|
|---|
| 49 | #include "G4SPSEneDistribution.hh"
|
|---|
| 50 | #include "G4SPSPosDistribution.hh"
|
|---|
| 51 | #include "G4ParticleTable.hh"
|
|---|
| 52 | #include "G4ParticleDefinition.hh"
|
|---|
| 53 | #include "G4ThreeVector.hh"
|
|---|
| 54 |
|
|---|
| 55 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|---|
| 56 |
|
|---|
| 57 | UltraPrimaryGeneratorAction::UltraPrimaryGeneratorAction()
|
|---|
| 58 | {
|
|---|
| 59 |
|
|---|
| 60 | particleGun = new G4GeneralParticleSource();
|
|---|
| 61 |
|
|---|
| 62 |
|
|---|
| 63 | // Define here the user default properties for the General Particle Source (GPS)
|
|---|
| 64 | // Can be modified through the GPS Messenger (/gps/... commands)
|
|---|
| 65 |
|
|---|
| 66 | G4ParticleTable* particleTable = G4ParticleTable::GetParticleTable();
|
|---|
| 67 | G4String particleName;
|
|---|
| 68 |
|
|---|
| 69 | G4ParticleDefinition* opticalphoton = particleTable->FindParticle(particleName="opticalphoton");
|
|---|
| 70 |
|
|---|
| 71 | //....PARTICLE DEFINITIONS
|
|---|
| 72 | particleGun->SetParticleDefinition(opticalphoton);
|
|---|
| 73 |
|
|---|
| 74 | G4ThreeVector Polarization = G4ThreeVector(1.,1.,0.) ;
|
|---|
| 75 | particleGun->SetParticlePolarization(Polarization);
|
|---|
| 76 |
|
|---|
| 77 | // DEFINE A MONO-ENERGETIC SOURCE
|
|---|
| 78 | G4SPSEneDistribution *eneDist = particleGun->GetCurrentSource()->GetEneDist() ;
|
|---|
| 79 | eneDist->SetEnergyDisType("Mono");
|
|---|
| 80 | eneDist->SetMonoEnergy(3.0*eV);
|
|---|
| 81 |
|
|---|
| 82 | // SET POSITION DISTRIBUTION
|
|---|
| 83 | G4SPSPosDistribution *posDist = particleGun->GetCurrentSource()->GetPosDist() ;
|
|---|
| 84 | posDist->SetPosDisType("Plane");
|
|---|
| 85 | posDist->SetPosDisShape("Circle");
|
|---|
| 86 | posDist->SetRadius(20.0*cm);
|
|---|
| 87 |
|
|---|
| 88 | #ifdef ULTRA_MIRROR_USE
|
|---|
| 89 | #define ULTRA_REFLECTION_USE
|
|---|
| 90 | #endif
|
|---|
| 91 |
|
|---|
| 92 | #ifdef ULTRA_GROUND_USE
|
|---|
| 93 | #define ULTRA_REFLECTION_USE
|
|---|
| 94 | #endif
|
|---|
| 95 |
|
|---|
| 96 | G4SPSAngDistribution *angDist = particleGun->GetCurrentSource()->GetAngDist() ;
|
|---|
| 97 |
|
|---|
| 98 | #ifdef ULTRA_REFLECTION_USE
|
|---|
| 99 | angDist->SetParticleMomentumDirection(G4ThreeVector(0.0,-1.0,0.0)) ;
|
|---|
| 100 | posDist->SetPosRot1(G4ThreeVector(1.,0.,0.));
|
|---|
| 101 | posDist->SetPosRot2(G4ThreeVector(0.,0.,-1.));
|
|---|
| 102 | posDist->SetCentreCoords(G4ThreeVector(0.0*cm,90.0*cm,150.0*cm));
|
|---|
| 103 |
|
|---|
| 104 | #else
|
|---|
| 105 | angDist->SetParticleMomentumDirection(G4ThreeVector(0.0,0.0,-1.0)) ;
|
|---|
| 106 | posDist->SetCentreCoords(G4ThreeVector(0.0*cm,0.0*cm,150.0*cm));
|
|---|
| 107 |
|
|---|
| 108 | #endif
|
|---|
| 109 |
|
|---|
| 110 | }
|
|---|
| 111 |
|
|---|
| 112 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|---|
| 113 |
|
|---|
| 114 | UltraPrimaryGeneratorAction::~UltraPrimaryGeneratorAction()
|
|---|
| 115 | {
|
|---|
| 116 | delete particleGun;
|
|---|
| 117 | }
|
|---|
| 118 |
|
|---|
| 119 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|---|
| 120 |
|
|---|
| 121 | void UltraPrimaryGeneratorAction::GeneratePrimaries(G4Event* anEvent)
|
|---|
| 122 | {
|
|---|
| 123 |
|
|---|
| 124 | G4int iEvent = anEvent->GetEventID() ;
|
|---|
| 125 | if ( iEvent == 0 ){
|
|---|
| 126 |
|
|---|
| 127 | G4cout << particleGun->GetParticleDefinition()->GetParticleName() << " " ;
|
|---|
| 128 | G4cout << particleGun->GetCurrentSource()->GetEneDist()->GetEnergyDisType() << " " ;
|
|---|
| 129 | G4cout << particleGun->GetCurrentSource()->GetPosDist()->GetPosDisType() << G4endl ;
|
|---|
| 130 |
|
|---|
| 131 | }
|
|---|
| 132 | particleGun->GeneratePrimaryVertex(anEvent);
|
|---|
| 133 | }
|
|---|
| 134 |
|
|---|
| 135 |
|
|---|