#include "hwallonehit.h"

// Created by M.Golubeva 01.11.2006

ClassImp(HWallOneHit)

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

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

void HWallOneHit::fill(const Float_t t, const Float_t a, const Int_t c) {
       timeHit=t;
       chargeHit=a;     
       cell=c;    
    }
    void HWallOneHit::getAddress(Int_t& c) {     
       c=cell;
    }

    void HWallOneHit::clear(void) {
       timeHit=-200;
       chargeHit=-200;      
       cell=-1;      
    }

Last change: Sat May 22 13:17:42 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.