00001
00002
00003
00004
00005
00006
00008 #include "MessageService/MsgService.h"
00009 #include "AnalysisNtuples/Module/ANtpRecord.h"
00010
00011 ClassImp(ANtpRecord)
00012 CVSID("$Id: ANtpRecord.cxx,v 1.2 2007/03/01 17:39:55 rhatcher Exp $");
00013
00014 ANtpRecord::ANtpRecord():
00015 RecRecordImp<ANtpHeader>(),
00016 beam(),
00017 event(),
00018 shower(),
00019 track(),
00020 truth()
00021 {
00022 MSG("ANtpRecord",Msg::kDebug)<<"In ANtpRecord()"<<endl;
00023 }
00024
00025 ANtpRecord::ANtpRecord(const ANtpHeader& head):
00026 RecRecordImp<ANtpHeader>(head),
00027 beam(),
00028 event(),
00029 shower(),
00030 track(),
00031 truth()
00032 {
00033 MSG("ANtpRecord",Msg::kDebug)<<"In ANtpRecord(const ANtpHeader &)"<<endl;
00034 }
00035
00036 ANtpRecord::~ANtpRecord()
00037 {
00038 MSG("ANtpRecord",Msg::kDebug)<<"In ~ANtpRecord"<<endl;
00039 }
00040