#ifndef __HShowerGeantWire_H
#define __HShowerGeantWire_H
using namespace std;
#include "TObject.h"
#include <iostream>
#include <iomanip>
class HShowerGeantWire : public TObject {
public:
HShowerGeantWire(void);
~HShowerGeantWire(void) {}
void Clear(void);
Float_t getCharge(void) const {return fCharge;}
void getXY(Float_t* pfX, Float_t* pfY);
Int_t getWireNr(){return nWireNr;}
Int_t getModule(){return nModule;}
Int_t getSector(){return nSector;}
Int_t getTrack(){return nTrack;}
void setCharge(Float_t q) {fCharge=q;}
void setXY(Float_t fX, Float_t fY);
void setWireNr(Int_t nNr){nWireNr = nNr;}
void setModule(Int_t nMod){nModule = nMod;}
void setSector(Int_t nSect){nSector = nSect;}
void setTrack(Int_t nTrk){nTrack = nTrk;}
friend ostream& operator<< (ostream& output, HShowerGeantWire& element);
protected:
Float_t fCharge;
Float_t fXWire;
Float_t fYWire;
Int_t nWireNr;
Int_t nModule;
Int_t nSector;
Int_t nTrack;
public:
ClassDef(HShowerGeantWire,2)
};
#endif
Last change: Sat May 22 13:13:31 2010
Last generated: 2010-05-22 13:13
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.