Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer << 3 // * DISCLAIMER * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th << 5 // * The following disclaimer summarizes all the specific disclaimers * 6 // * the Geant4 Collaboration. It is provided << 6 // * of contributors to this software. The specific disclaimers,which * 7 // * conditions of the Geant4 Software License << 7 // * govern, are listed with their locations in: * 8 // * LICENSE and available at http://cern.ch/ << 8 // * http://cern.ch/geant4/license * 9 // * include a list of copyright holders. << 10 // * 9 // * * 11 // * Neither the authors of this software syst 10 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 11 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 12 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 13 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file << 14 // * use. * 16 // * for the full disclaimer and the limitatio << 17 // * 15 // * * 18 // * This code implementation is the result << 16 // * This code implementation is the intellectual property of the * 19 // * technical work of the GEANT4 collaboratio << 17 // * GEANT4 collaboration. * 20 // * By using, copying, modifying or distri << 18 // * By copying, distributing or modifying the Program (or any work * 21 // * any work based on the software) you ag << 19 // * based on the Program) you indicate your acceptance of this * 22 // * use in resulting scientific publicati << 20 // * statement, and all its terms. * 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* 21 // ******************************************************************** 25 // 22 // 26 /// \file field/field02/include/F02PrimaryGene << 27 /// \brief Definition of the F02PrimaryGenerat << 28 // 23 // >> 24 // $Id: F02PrimaryGeneratorAction.hh,v 1.3 2001/10/15 17:20:41 gcosmo Exp $ >> 25 // GEANT4 tag $Name: geant4-07-01 $ 29 // 26 // 30 // << 27 // 31 // << 28 32 //....oooOO0OOooo........oooOO0OOooo........oo << 29 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 33 //....oooOO0OOooo........oooOO0OOooo........oo << 30 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 34 31 35 #ifndef F02PrimaryGeneratorAction_h 32 #ifndef F02PrimaryGeneratorAction_h 36 #define F02PrimaryGeneratorAction_h 1 33 #define F02PrimaryGeneratorAction_h 1 37 34 38 #include "G4VUserPrimaryGeneratorAction.hh" 35 #include "G4VUserPrimaryGeneratorAction.hh" 39 #include "globals.hh" 36 #include "globals.hh" 40 37 41 class G4ParticleGun; 38 class G4ParticleGun; 42 class G4Event; 39 class G4Event; 43 class F02DetectorConstruction; 40 class F02DetectorConstruction; 44 class F02PrimaryGeneratorMessenger; 41 class F02PrimaryGeneratorMessenger; 45 class G4ParticleDefinition; << 46 42 47 //....oooOO0OOooo........oooOO0OOooo........oo << 43 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... 48 44 49 class F02PrimaryGeneratorAction : public G4VUs 45 class F02PrimaryGeneratorAction : public G4VUserPrimaryGeneratorAction 50 { 46 { 51 public: 47 public: 52 F02PrimaryGeneratorAction(F02DetectorConst << 48 F02PrimaryGeneratorAction(F02DetectorConstruction*); 53 ~F02PrimaryGeneratorAction() override; << 49 ~F02PrimaryGeneratorAction(); 54 50 55 public: 51 public: 56 void GeneratePrimaries(G4Event*) override; << 52 void GeneratePrimaries(G4Event*); 57 void SetRndmFlag(G4String val) { fRndmFlag << 53 void SetRndmFlag(G4String val) { rndmFlag = val;} 58 void SetXVertex(G4double x); << 54 void Setxvertex(G4double x) ; 59 void SetYVertex(G4double y); << 55 void Setyvertex(G4double y) ; 60 void SetZVertex(G4double z); << 56 void Setzvertex(G4double z) ; 61 57 62 static G4String GetPrimaryName(); << 58 static G4String GetPrimaryName() ; 63 59 64 private: 60 private: 65 G4ParticleGun* fParticleGun = nullptr; // << 61 G4ParticleGun* particleGun; // pointer a to G4 service class 66 F02DetectorConstruction* fDetector = nullp << 62 F02DetectorConstruction* F02Detector; // pointer to the geometry 67 << 63 68 F02PrimaryGeneratorMessenger* fGunMessenge << 64 F02PrimaryGeneratorMessenger* gunMessenger; // messenger of this class 69 G4String fRndmFlag = "off"; // flag for r << 65 G4String rndmFlag; // flag for a random impact point >> 66 >> 67 static G4String thePrimaryParticleName ; >> 68 G4double xvertex,yvertex,zvertex; >> 69 G4bool vertexdefined ; 70 70 71 static G4ParticleDefinition* fgPrimaryPart << 72 G4double fXVertex = 0.; << 73 G4double fYVertex = 0.; << 74 G4double fZVertex = 0.; << 75 G4bool fVertexDefined = false; << 76 }; 71 }; 77 72 78 #endif 73 #endif 79 74