Files
geant4/examples/extended/eventgenerator/HepMC/HepMCEx02/include/H02PrimaryGeneratorAction.hh
T
2016-06-09 14:44:26 +02:00

97 lines
3.5 KiB
C++

//
// ********************************************************************
// * License and Disclaimer *
// * *
// * The Geant4 software is copyright of the Copyright Holders of *
// * the Geant4 Collaboration. It is provided under the terms and *
// * conditions of the Geant4 Software License, included in the file *
// * LICENSE and available at http://cern.ch/geant4/license . These *
// * include a list of copyright holders. *
// * *
// * Neither the authors of this software system, nor their employing *
// * institutes,nor the agencies providing financial support for this *
// * work make any representation or warranty, express or implied, *
// * regarding this software system or assume any liability for its *
// * use. Please see the license in the file LICENSE and URL above *
// * for the full disclaimer and the limitation of liability. *
// * *
// * This code implementation is the result of the scientific and *
// * technical work of the GEANT4 collaboration. *
// * By using, copying, modifying or distributing the software (or *
// * any work based on the software) you agree to acknowledge its *
// * use in resulting scientific publications, and indicate your *
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// ====================================================================
//
// H02PrimaryGeneratorAction.hh
// $Id: H02PrimaryGeneratorAction.hh,v 1.5 2006/06/29 17:10:02 gunter Exp $
//
// ====================================================================
#ifndef H02_PRIMARY_GENERATOR_ACTION_H
#define H02_PRIMARY_GENERATOR_ACTION_H
#include <map>
#include "globals.hh"
#include "G4VUserPrimaryGeneratorAction.hh"
class G4Event;
class G4VPrimaryGenerator;
class H02PrimaryGeneratorMessenger;
class H02PrimaryGeneratorAction : public G4VUserPrimaryGeneratorAction {
private:
G4VPrimaryGenerator* particleGun;
G4VPrimaryGenerator* hepmcAscii;
G4VPrimaryGenerator* pythiaGen;
G4VPrimaryGenerator* currentGenerator;
G4String currentGeneratorName;
std::map<G4String, G4VPrimaryGenerator*> gentypeMap;
H02PrimaryGeneratorMessenger* messenger;
public:
H02PrimaryGeneratorAction();
~H02PrimaryGeneratorAction();
virtual void GeneratePrimaries(G4Event* anEvent);
void SetGenerator(G4VPrimaryGenerator* gen);
void SetGenerator(G4String genname);
G4VPrimaryGenerator* GetGenerator() const;
G4String GetGeneratorName() const;
};
// ====================================================================
// inline functions
// ====================================================================
inline void H02PrimaryGeneratorAction::SetGenerator(G4VPrimaryGenerator* gen)
{
currentGenerator= gen;
}
inline void H02PrimaryGeneratorAction::SetGenerator(G4String genname)
{
std::map<G4String, G4VPrimaryGenerator*>::iterator pos= gentypeMap.find(genname);
if(pos != gentypeMap.end()) {
currentGenerator= pos->second;
currentGeneratorName= genname;
}
}
inline G4VPrimaryGenerator* H02PrimaryGeneratorAction::GetGenerator() const
{
return currentGenerator;
}
inline G4String H02PrimaryGeneratorAction::GetGeneratorName() const
{
return currentGeneratorName;
}
#endif