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/BlineTracer/include/G4BlinePri << 27 /// \brief Definition of the G4BlinePrimaryGen << 28 // << 29 // << 30 // 23 // >> 24 // $Id: G4BlinePrimaryGeneratorAction.hh,v 1.1 2003/11/25 09:29:46 gcosmo Exp $ >> 25 // GEANT4 tag $Name: geant4-07-01 $ 31 // 26 // >> 27 // 32 // ------------------------------------------- 28 // -------------------------------------------------------------------- 33 // 29 // 34 // Class description: 30 // Class description: 35 // 31 // 36 // Defines the primary generator action used f 32 // Defines the primary generator action used for tracing magnetic 37 // field lines. 33 // field lines. 38 // It generates the primary vertex by using th 34 // It generates the primary vertex by using the user defined primary 39 // generator action and replaces only the defi 35 // generator action and replaces only the definition of the particle 40 // to be tracked by a "charged-geantino". 36 // to be tracked by a "charged-geantino". 41 // The user can define start position for fiel 37 // The user can define start position for field line tracking in 42 // his/her own primary generator action. 38 // his/her own primary generator action. 43 39 44 // ------------------------------------------- 40 // -------------------------------------------------------------------- 45 // Author: Laurent Desorgher (desorgher@phim.u 41 // Author: Laurent Desorgher (desorgher@phim.unibe.ch) 46 // Created - 2003-10-06 42 // Created - 2003-10-06 47 // ------------------------------------------- 43 // -------------------------------------------------------------------- 48 #ifndef G4BlinePrimaryGeneratorAction_h 44 #ifndef G4BlinePrimaryGeneratorAction_h 49 #define G4BlinePrimaryGeneratorAction_h 1 45 #define G4BlinePrimaryGeneratorAction_h 1 50 46 51 #include "G4ThreeVector.hh" << 47 #include <vector> >> 48 52 #include "G4Types.hh" 49 #include "G4Types.hh" >> 50 #include "G4ThreeVector.hh" 53 #include "G4VUserPrimaryGeneratorAction.hh" 51 #include "G4VUserPrimaryGeneratorAction.hh" 54 52 55 #include <vector> << 56 << 57 class G4Event; 53 class G4Event; 58 54 59 class G4BlinePrimaryGeneratorAction : public G << 55 class G4BlinePrimaryGeneratorAction : public G4VUserPrimaryGeneratorAction 60 { 56 { 61 public: // with description 57 public: // with description 62 G4BlinePrimaryGeneratorAction() = default; << 63 ~G4BlinePrimaryGeneratorAction() override << 64 58 65 void GeneratePrimaries(G4Event* anEvent) o << 59 G4BlinePrimaryGeneratorAction(); >> 60 ~G4BlinePrimaryGeneratorAction(); >> 61 >> 62 void GeneratePrimaries(G4Event* anEvent); 66 inline void SetUserPrimaryAction(G4VUserPr 63 inline void SetUserPrimaryAction(G4VUserPrimaryGeneratorAction* anAction) 67 { << 64 { fUserPrimaryAction=anAction; } 68 fUserPrimaryAction = anAction; << 69 } << 70 65 71 private: 66 private: 72 G4VUserPrimaryGeneratorAction* fUserPrimar << 67 73 G4bool fFirstPartOfBline = true; << 68 G4VUserPrimaryGeneratorAction* fUserPrimaryAction; 74 G4ThreeVector fBlineStartPosition; << 69 G4bool FirstPartOfBline; 75 G4double fT0 = 0.; << 70 G4ThreeVector BlineStartPosition; >> 71 G4double T0; 76 }; 72 }; 77 73 78 #endif 74 #endif 79 75