]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliGenEventHeader.cxx
flistTreeFrame attribute added; fCanvasWindow removed
[u/mrichter/AliRoot.git] / STEER / AliGenEventHeader.cxx
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 /*
17 $Log$
18 Revision 1.2  2000/12/21 16:24:06  morsch
19 Coding convention clean-up
20
21 Revision 1.1  2000/06/15 15:47:48  morsch
22 Proposal for an event header class for generated events.
23
24 */
25
26 // Event header base class for generator. 
27 // Stores as a minimum the date, run number, event number,
28 // number of particles produced  
29 // and the impact parameter.
30 // 
31 // Author: andreas.morsch@cern.ch
32
33 #include "AliGenEventHeader.h"
34 ClassImp(AliGenEventHeader)
35
36
37 //_____________________________________________________________________________
38 AliGenEventHeader::AliGenEventHeader()
39 {
40 // Constructor
41     fNProduced      = -1;      
42     fImpactParameter= -1.;
43 }
44
45
46 AliGenEventHeader::AliGenEventHeader(const char * name)
47     :TNamed(name, "Event Header")
48 {
49 // Constructor
50     fNProduced      = -1;      
51     fImpactParameter= -1.;
52 }
53
54
55
56