Import Geant4 10.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-10 11:51:14 +02:00
parent e2d2f9810a
commit 286caacf06
12421 changed files with 730077 additions and 502383 deletions
@@ -24,43 +24,35 @@
// ********************************************************************
//
//
// $Id$
// $Id: BrachyPrimaryGeneratorAction.hh 74021 2013-09-19 13:41:54Z gcosmo $
//
// ********************************************
// * *
// * BrachyPrimaryGeneratorAction.hh *
// * *
// ********************************************
// This class must be implemented because it is mandatory
//
// code developed by Susanna Guatelli
#ifndef BrachyPrimaryGeneratorAction_h
#define BrachyPrimaryGeneratorAction_h 1
#include "G4VUserPrimaryGeneratorAction.hh"
class G4ParticleGun;
class G4Run;
class G4Event;
class G4GeneralParticleSource;
class BrachyAnalysisManager;
class BrachyFactory;
class BrachyPrimaryGeneratorMessenger;
class BrachyPrimaryGeneratorAction : public G4VUserPrimaryGeneratorAction
{
public:
BrachyPrimaryGeneratorAction();
BrachyPrimaryGeneratorAction(BrachyAnalysisManager*);
~BrachyPrimaryGeneratorAction();
public:
void GeneratePrimaries(G4Event* anEvent);
void SwitchEnergy(G4String);
private:
BrachyFactory* factory;
BrachyPrimaryGeneratorMessenger* primaryMessenger;
private:
G4GeneralParticleSource* gun;
BrachyAnalysisManager* analysis;
};
#endif