#include "hrichhitIPU.h"
ClassImp(HRichHitIPU)
Bool_t HRichHitIPUCont::sortIncreasing=kTRUE;
HRichHitIPU::HRichHitIPU(void)
{
iRingX = 0;
iRingY = 0;
iRingQuality = 0;
iVetoQuality = 0;
nSector = 0;
nPads = 0;
fTheta =0.;
fPhi =0.;
DataWord=999;
}
HRichHitIPU& HRichHitIPU::operator=(const HRichHitIPU& source)
{
if (this != &source)
{
iRingX = source.iRingX;
iRingY = source.iRingY;
iRingQuality = source.iRingQuality;
iVetoQuality = source.iVetoQuality;
nSector = source.nSector;
nPads = source.nPads;
fTheta =source.fTheta;
fPhi =source.fPhi;
DataWord=source.DataWord;
}
return *this;
}
void HRichHitIPU::Reset(void)
{
iRingX = 0;
iRingY = 0;
iRingQuality = 0;
iVetoQuality = 0;
nSector = 0;
nPads = 0;
fTheta =0.;
fPhi =0.;
DataWord=0;
}
Last change: Sat May 22 13:09:06 2010
Last generated: 2010-05-22 13:09
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.