GENIEGenerator
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
MuELossI.cxx
Go to the documentation of this file.
1 //____________________________________________________________________________
2 /*
3  Copyright (c) 2003-2024, The GENIE Collaboration
4  For the full text of the license visit http://copyright.genie-mc.org
5 
6 
7  Costas Andreopoulos <c.andreopoulos \at cern.ch>
8  University of Liverpool - December 10, 2003
9 
10  For the class documentation see the corresponding header file.
11 
12  Important revisions after version 2.0.0 :
13 
14 */
15 //____________________________________________________________________________
16 
18 
19 using namespace genie;
20 using namespace genie::mueloss;
21 
22 //___________________________________________________________________________
23 MuELossI::MuELossI() :
24 Algorithm()
25 {
26 
27 }
28 //___________________________________________________________________________
29 MuELossI::MuELossI(string name) :
30 Algorithm(name)
31 {
32 
33 }
34 //___________________________________________________________________________
35 MuELossI::MuELossI(string name, string config) :
36 Algorithm(name, config)
37 {
38 
39 }
40 //___________________________________________________________________________
42 {
43 
44 }
45 //___________________________________________________________________________
46 
Algorithm abstract base class.
Definition: Algorithm.h:54