// ---------------------------------------------------------------------------- // $Id: LCDEventHeader.h,v 1.6 2001/06/19 19:39:42 masako Exp $ // ---------------------------------------------------------------------------- // // $Log: LCDEventHeader.h,v $ // Revision 1.6 2001/06/19 19:39:42 masako // Remove cross section. // // Revision 1.5 2001/06/19 16:54:37 toshi // Just add $ID: $ in the top of this file. // // // LCDEventHeader.h // // May 4,2001 M. Iwasaki Creation of Event Header // #ifndef LCDEVENTHEADER_H #define LCDEVENTHEADER_H #include "TObject.h" #include class LCDEventHeader: public TObject { private: Int_t m_RunNum; // Run number Int_t m_EvtNum; // Event number Char_t m_ProcessName[64]; // Generated process name public: LCDEventHeader(); virtual ~LCDEventHeader() { } Int_t GetEvtNum() { return m_EvtNum; } Int_t GetRunNum() { return m_RunNum; } Char_t* GetProcessName() { return m_ProcessName; } void SetEvtNum(Int_t a) { m_EvtNum = a; } void SetRunNum(Int_t a) { m_RunNum = a; } void SetProcessName(Char_t* a) { strcpy(m_ProcessName,a); } ClassDef(LCDEventHeader,1) //Event Header }; #endif