00001 /*************************************************************************** 00002 00003 Alignment strip ntp class class that stores track strips in TClonesArray 00004 00005 ***************************************************************************/ 00006 00007 #ifndef NTPALIGNTRACKSTRIP_H 00008 #define NTPALIGNTRACKSTRIP_H 00009 00010 #include "TObject.h" 00011 00012 class AlignmentStrip; 00013 00014 class NtpAlignTrackStrip: public TObject 00015 { 00016 00017 public: 00018 00019 // Constructors & Destructors 00020 NtpAlignTrackStrip(); 00021 NtpAlignTrackStrip(const AlignmentStrip& astrip); 00022 virtual ~NtpAlignTrackStrip(); 00023 00024 public: 00025 00026 UInt_t plexseid; 00027 UShort_t ndigit; 00028 Double_t charge; 00029 Double_t residual; 00030 Double_t begtime; 00031 00032 ClassDef(NtpAlignTrackStrip,1) 00033 }; 00034 00035 #endif // NTPALIGNMENTSTRIP_H
1.3.9.1