Geant4  10.02.p01
DefaultHepRepAction.cc
Go to the documentation of this file.
1 // Copyright FreeHEP, 2005.
2 
3 #include <iostream>
4 
5 #include "cheprep/DefaultHepRepAction.h"
6 
7 using namespace std;
8 using namespace HEPREP;
9 
14 namespace cheprep {
15 
16 DefaultHepRepAction::DefaultHepRepAction(string aName, string anExpression)
17  : name(aName), expression(anExpression) {
18 }
19 
20 DefaultHepRepAction::~DefaultHepRepAction() {
21 }
22 
24  return name;
25 }
26 
27 string DefaultHepRepAction::getExpression() {
28  return expression;
29 }
30 
31 HepRepAction* DefaultHepRepAction::copy() {
32  return new DefaultHepRepAction(name, expression);
33 }
34 
35 } // cheprep
36 
G4String name
Definition: TRTMaterials.hh:40
std::string getName(const ParticleType t)
Get the native INCL name of the particle.