00001 /*************************************************************************** 00002 00003 Alignment strip ntp class class that stores track strips in TClonesArray 00004 00005 ***************************************************************************/ 00006 00007 #include "NtpAlignTrackStrip.h" 00008 #include "AlignmentStrip.h" 00009 00010 ClassImp(NtpAlignTrackStrip) 00011 00012 NtpAlignTrackStrip::NtpAlignTrackStrip() 00013 :plexseid(0), 00014 ndigit(0), 00015 charge(0.0), 00016 residual(0.0), 00017 begtime(0.0) 00018 { 00019 } 00020 00021 NtpAlignTrackStrip::NtpAlignTrackStrip(const AlignmentStrip& astrip) 00022 :plexseid(0), 00023 ndigit(0), 00024 charge(0.0), 00025 residual(0.0), 00026 begtime(0.0) 00027 { 00028 plexseid = astrip.plexseid; 00029 ndigit = astrip.ndigit; 00030 charge = astrip.charge; 00031 residual = astrip.residual; 00032 begtime = astrip.begtime; 00033 } 00034 00035 NtpAlignTrackStrip::~NtpAlignTrackStrip() 00036 { 00037 }
1.3.9.1