ROOT logo
#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;      
    }
 hwallonehit.cc:1
 hwallonehit.cc:2
 hwallonehit.cc:3
 hwallonehit.cc:4
 hwallonehit.cc:5
 hwallonehit.cc:6
 hwallonehit.cc:7
 hwallonehit.cc:8
 hwallonehit.cc:9
 hwallonehit.cc:10
 hwallonehit.cc:11
 hwallonehit.cc:12
 hwallonehit.cc:13
 hwallonehit.cc:14
 hwallonehit.cc:15
 hwallonehit.cc:16
 hwallonehit.cc:17
 hwallonehit.cc:18
 hwallonehit.cc:19
 hwallonehit.cc:20
 hwallonehit.cc:21
 hwallonehit.cc:22
 hwallonehit.cc:23
 hwallonehit.cc:24
 hwallonehit.cc:25
 hwallonehit.cc:26