//----------------------------------------------------------- // 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() {;} /* Particle::Particle(const Particle& other) { fDetID =other.fDetID; fDetName =other.fDetName; fPosXYZ =other.fPosXYZ; fTrackPosXYZ =other.fTrackPosXYZ; fTrackPosMom =other.fTrackPosMom; fTrackPosXYZErr =other.fTrackPosXYZErr; fTrackPosMomErr =other.fTrackPosMomErr; fResXYZ =other.fResXYZ; fResUV =other.fResUV; fResA =other.fResA; fSigXYZ =other.fSigXYZ; fSigA =other.fSigA; fSigUV =other.fSigUV; fAxis1 =other.fAxis1; fAxis2 =other.fAxis2; fAxis3 =other.fAxis3; fTrackPlane =other.fTrackPlane; fMidPlane =other.fMidPlane; fClusterSize =other.fClusterSize; fClusterSizeShare =other.fClusterSizeShare; f2DClusterSize =other.f2DClusterSize; fFullClusterSize =other.fFullClusterSize; fFullClusterSizeTrack =other.fFullClusterSizeTrack; fFullClusterSizeAxis =other.fFullClusterSizeAxis; fClusterAmp =other.fClusterAmp; } */