00001
00002 #include "root/MTTrack.hh"
00003 #include <iostream>
00004
00005 using namespace std;
00006
00007
00008
00009
00010
00011
00012 ClassImp(MTTrack)
00013
00014
00015 MTTrack::MTTrack( bool fromPad, bool fromStrip ,
00016 bool straight ,bool singleHit ,
00017 Float_t ax ,Float_t bx ,Float_t ay , Float_t by )
00018 : fFromPad(fromPad) ,fFromStrip (fromStrip) ,fStraight(straight) , fSingleHit(singleHit) , fAx(ax) ,fBx(bx) , fAy(ay) ,fBy(by)
00019 {
00020 }
00021
00022 MTTrack::MTTrack() : fFromPad(false) ,fFromStrip (false) ,fStraight(false) , fSingleHit(false) , fAx(0.) ,fBx(0.) , fAy(0.) ,fBy(0.)
00023 {
00024 }
00025
00026
00027
00028 MTTrack::~MTTrack()
00029 {
00030 }
00031