]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliGenEventHeader.cxx
flistTreeFrame attribute added; fCanvasWindow removed
[u/mrichter/AliRoot.git] / STEER / AliGenEventHeader.cxx
CommitLineData
56a10437 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$
9e1a0ddb 18Revision 1.2 2000/12/21 16:24:06 morsch
19Coding convention clean-up
20
675e9664 21Revision 1.1 2000/06/15 15:47:48 morsch
22Proposal for an event header class for generated events.
23
56a10437 24*/
25
675e9664 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
56a10437 33#include "AliGenEventHeader.h"
34ClassImp(AliGenEventHeader)
35
36
37//_____________________________________________________________________________
9e1a0ddb 38AliGenEventHeader::AliGenEventHeader()
39{
40// Constructor
41 fNProduced = -1;
42 fImpactParameter= -1.;
43}
44
45
56a10437 46AliGenEventHeader::AliGenEventHeader(const char * name)
47 :TNamed(name, "Event Header")
48{
49// Constructor
9e1a0ddb 50 fNProduced = -1;
51 fImpactParameter= -1.;
56a10437 52}
675e9664 53
54
55
56