#include "BrDCPlane.h"

ClassImp(BrDCPlane)


////////////////////////////////////////////////////////////
//
// TBrDCPlane is a PHOBOS data class providing storage and 
// access function for event data information. The data
// is stored in TPhObject objects that are kept inside
// a THashList.
// This allows modification of the TBrDCPlane content by the 
// user, with the TPhObject providing a standard interface
// for information retrieval, bookkeeping and I/O selection.
//
////////////////////////////////////////////////////////////

  BrDCPlane::BrDCPlane()
{
// 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 TBrDCPlane(Int_t run, Int_t event) instead
}

 BrDCPlane::BrDCPlane(Char_t *name, Char_t *title)
{
SetName(name);
SetTitle(title);
}

 BrDCPlane::BrDCPlane(Char_t *name, Char_t *title,
	Int_t numwire,Float_t wirdis, Float_t wirang)
{
SetName(name);
SetTitle(title);
SetNwire(numwire);
SetWirdis(wirdis);
SetWirang(wirang);
}

  BrDCPlane::~BrDCPlane()
{
int ijk = 1;
}

 void BrDCPlane::ListParameters()
{
printf("The name is %sn",GetName());
}



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.