| 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: PhotInPrimaryGeneratorAction.hh,v 1.5 2006/06/29 16:24:53 gunter Exp $
|
|---|
| 28 | // GEANT4 tag $Name: $
|
|---|
| 29 | //
|
|---|
| 30 |
|
|---|
| 31 | #ifndef PhotInPrimaryGeneratorAction_h
|
|---|
| 32 | #define PhotInPrimaryGeneratorAction_h 1
|
|---|
| 33 |
|
|---|
| 34 | #include "PhotInDetectorConstruction.hh"
|
|---|
| 35 |
|
|---|
| 36 | #include "G4VUserPrimaryGeneratorAction.hh"
|
|---|
| 37 | #include "globals.hh"
|
|---|
| 38 | #include "G4Event.hh"
|
|---|
| 39 | #include "G4ParticleGun.hh"
|
|---|
| 40 | #include "G4ParticleTable.hh"
|
|---|
| 41 | #include "G4ParticleDefinition.hh"
|
|---|
| 42 |
|
|---|
| 43 | class PhotInPrimaryGeneratorAction: public G4VUserPrimaryGeneratorAction
|
|---|
| 44 | {
|
|---|
| 45 | public:
|
|---|
| 46 | PhotInPrimaryGeneratorAction();
|
|---|
| 47 | virtual ~PhotInPrimaryGeneratorAction();
|
|---|
| 48 |
|
|---|
| 49 | virtual void GeneratePrimaries(G4Event*);
|
|---|
| 50 |
|
|---|
| 51 | //void SetSerial(G4bool ser) {serial = ser;} // Different positions for different setups
|
|---|
| 52 | void SetDetector(PhotInDetectorConstruction* det);
|
|---|
| 53 | void SetProjectileName(G4String partName);
|
|---|
| 54 | void SetProjectileEnergy(G4double partEnergy);
|
|---|
| 55 | void SetSection(G4int sec) // Define position for the particular section
|
|---|
| 56 | {
|
|---|
| 57 | if(sec<0||sec>PhotInNumSections)
|
|---|
| 58 | {
|
|---|
| 59 | G4cout<<"PhotInPrimaryGeneratorAction::SetSection: section="<<sec<<"? set 1"<<G4endl;
|
|---|
| 60 | section = 1;
|
|---|
| 61 | }
|
|---|
| 62 | else section = sec;
|
|---|
| 63 | }
|
|---|
| 64 | //G4bool GetSerial() {return serial;} // Get the setups
|
|---|
| 65 | G4int GetSection() {return section;} // Get the starting section
|
|---|
| 66 | G4String GetProjectileName() {return part;} // Get the projectile name
|
|---|
| 67 | G4double GetProjectileEnergy() {return energy;} // Get the projectile energy
|
|---|
| 68 |
|
|---|
| 69 | private: //--- BODY ---
|
|---|
| 70 | G4ParticleGun* particleGun;
|
|---|
| 71 | G4int section;
|
|---|
| 72 | PhotInDetectorConstruction* detector;
|
|---|
| 73 | G4String part;
|
|---|
| 74 | G4double energy;
|
|---|
| 75 | G4String oldPart;
|
|---|
| 76 | G4double oldEnergy;
|
|---|
| 77 | };
|
|---|
| 78 |
|
|---|
| 79 | #endif
|
|---|
| 80 |
|
|---|
| 81 |
|
|---|