#include "hwallhit.h"

// Created 18.06.00 by M.Golubeva
// Modified 11.8.2005 F. Krizek


ClassImp(HWallHit)

     HWallHit::HWallHit(void) { clear(); }

     void HWallHit::setAddress(const Int_t c) {      
       cell=c;
    }

 void HWallHit::fill(const Float_t t, const Float_t a, const Int_t c) {
       timeCal=t;
       chargeCal=a;     
       cell=c;    
    }
     void HWallHit::getAddress(Int_t& c) {     
       c=cell;
    }

     void HWallHit::clear(void) {
       timeCal=-200.;
       chargeCal=-200.;      
       cell=-1;      
    }


ROOT page - Class index - Class Hierarchy - 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.