//----------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // Data object carrying infomration about a fitted track // (residuals, chi2,...) // This class is meant to serve as a container which can be // used witht the ROOT TreeViewer to produce plots // // Environment: // Software developed for the GEMTPC Detector // // Author List: // Martin Berger TUM (original author) // // //----------------------------------------------------------- //this class header #include "Particle.h" ClassImp(Particle) Particle::Particle() : fFitFlag(-1), fHasTpc(kFALSE), fHasCdc(kFALSE), fPosXYZ(), fResXYZ(), fResUV(), fResA(), fSigXYZ(), fSigA(), fSigUV(), fAxis1(), fAxis2(), fAxis3(), fTrackPlane(), fMidPlane(), fClusterSize(), fClusterSizeShare(), f2DClusterSize(), fFullClusterSize(), fFullClusterSizeTrack(), fFullClusterSizeAxis(), fClusterAmp() {;}