GENIEGenerator
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
RegistryItemTypeDef.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  Costas Andreopoulos <c.andreopoulos \at cern.ch>
7  University of Liverpool
8 */
9 //____________________________________________________________________________
10 
12 
13 using std::endl;
14 
15 //____________________________________________________________________________
17 {
18 
19 }
20 //____________________________________________________________________________
21 RgAlg::RgAlg(string n, string c) :
22 name(n),
23 config(c)
24 {
25 
26 }
27 //____________________________________________________________________________
29 {
30 
31 }
32 //____________________________________________________________________________
33 ostream & operator << (ostream & stream, const RgAlg & alg)
34 {
35  stream << alg.name << "/" << alg.config;
36  return stream;
37 }
38 //____________________________________________________________________________
40 {
41  this->name = alg.name;
42  this->config = alg.config;
43  return (*this);
44 }
45 //____________________________________________________________________________
ostream & operator<<(ostream &stream, const TClonesArray *particle_list)
Definition: gtestDecay.cxx:223
RgAlg & operator=(const RgAlg &alg)
string config