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