#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;      
    }

Last change: Sat May 22 13:17:35 2010
Last generated: 2010-05-22 13:17

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.