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