Line data Source code
1 : /**************************************************************************
2 : * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 : * *
4 : * Author: The ALICE Off-line Project. *
5 : * Contributors are mentioned in the code where appropriate. *
6 : * *
7 : * Permission to use, copy, modify and distribute this software and its *
8 : * documentation strictly for non-commercial purposes is hereby granted *
9 : * without fee, provided that the above copyright notice appears in all *
10 : * copies and that both the copyright notice and this permission notice *
11 : * appear in the supporting documentation. The authors make no claims *
12 : * about the suitability of this software for any purpose. It is *
13 : * provided "as is" without express or implied warranty. *
14 : **************************************************************************/
15 :
16 : /* $Id$ */
17 :
18 : #include "AliGenHijingEventHeader.h"
19 176 : ClassImp(AliGenHijingEventHeader)
20 :
21 0 : AliGenHijingEventHeader::AliGenHijingEventHeader():
22 0 : fTotalEnergy(0.),
23 0 : fTrials(0),
24 0 : fNPart(0),
25 0 : fJet1(0., 0., 0., 0.),
26 0 : fJet2(0., 0., 0., 0.),
27 0 : fJetFsr1(0., 0., 0., 0.),
28 0 : fJetFsr2(0., 0., 0., 0.),
29 0 : fAreSpectatorsInTheStack(kFALSE),
30 0 : fIsDataFragmentationSet(kFALSE)
31 0 : {
32 : // Constructor
33 0 : }
34 :
35 0 : AliGenHijingEventHeader::AliGenHijingEventHeader(const char* name):
36 0 : AliGenEventHeader(name),
37 0 : fTotalEnergy(0.),
38 0 : fTrials(0),
39 0 : fNPart(0),
40 0 : fJet1(0., 0., 0., 0.),
41 0 : fJet2(0., 0., 0., 0.),
42 0 : fJetFsr1(0., 0., 0., 0.),
43 0 : fJetFsr2(0., 0., 0., 0.),
44 0 : fAreSpectatorsInTheStack(kFALSE),
45 0 : fIsDataFragmentationSet(kFALSE)
46 :
47 0 : {
48 : // Copy Constructor
49 0 : }
|