ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
DefaultHepRepAction.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file DefaultHepRepAction.cc
1 // Copyright FreeHEP, 2005.
2 
3 #include <iostream>
4 
6 
7 using namespace std;
8 using namespace HEPREP;
9 
13 namespace cheprep {
14 
15 DefaultHepRepAction::DefaultHepRepAction(string aName, string anExpression)
16  : name(aName), expression(anExpression) {
17 }
18 
20 }
21 
23  return name;
24 }
25 
27  return expression;
28 }
29 
31  return new DefaultHepRepAction(name, expression);
32 }
33 
34 } // cheprep
35