// $Id: BrEventHeader.cxx,v 1.3 1998/08/14 21:26:24 videbaek Exp $
// $Log: BrEventHeader.cxx,v $
// Revision 1.3 1998/08/14 21:26:24 videbaek
// Some cleanup mods
//
// Revision 1.2 1998/03/06 22:09:59 videbaek
// Working update
//
// Revision 1.1.1.1 1998/03/04 21:32:48 brahmlib
// Brat base
//
//
#include "BrEventHeader.h"
//#define _BRDEBUG
#include <iostream.h>
ClassImp(BrEventHeader)
////////////////////////////////////////////////////////////
//
// BrEventHeader is a BRAHMS data containing basic information
// about the data events.
//
////////////////////////////////////////////////////////////
BrEventHeader::BrEventHeader()
{
// Constructor. Set counter and list data members to zero.
// Don't use this constructor unless you have to and know
// what you are doing
// Use BrEventHeader(Int_t run, Int_t event) instead
#ifdef _BRDEBUG
cout << "BrEventHeader ctor" << endl;
#endif
}
BrEventHeader::BrEventHeader(Int_t run, Int_t event)
{
// Constructor. Create the event header and the hash table
// for storing the data objects for this event. Set the
// event name.
SetRunNumber(run);
SetEventNumber(event);
#ifdef _BRDEBUG
cout << "BrEventHeader ctor(i,j)" << endl;
#endif
}
BrEventHeader::~BrEventHeader()
{
// Destructor. Delete BrEventHeader and all the data objects
// currently owned by BrEventHeader
#ifdef _BRDEBUG
cout << "BrEventheader : dtor" << endl;
#endif
}
ROOT page - Class index - Top of the page
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.