]> git.uio.no Git - u/mrichter/AliRoot.git/blame - JETAN/AliJetHeader.h
- Correct setting of FUDGEM parameter.
[u/mrichter/AliRoot.git] / JETAN / AliJetHeader.h
CommitLineData
99e5fe42 1#ifndef ALIJETHEADER_H
2#define ALIJETHEADER_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7
8//---------------------------------------------------------------------
9// Jet header base class
10// Stores a comment which describes the jet analysis
11// Author: jgcn@mda.cinvestav.mx
12//---------------------------------------------------------------------
13
14#include <TNamed.h>
15#include <TString.h>
16
17class AliJetHeader : public TNamed
18{
19 public:
20
21 AliJetHeader(const char* name);
22 AliJetHeader();
23 virtual ~AliJetHeader() { }
24
25 // Getters
26 virtual TString GetComment() {return fComment;}
27
28 // Setters
29 virtual void SetComment(const char* com) {fComment=TString(com);}
30
31 // others
32
33protected:
34 TString fComment; // a comment
35
36 ClassDef(AliJetHeader,1)
37};
38
39#endif