00001 00002 //$Id: ANtpTruthInfoAtm.cxx,v 1.7 2005/08/01 15:39:20 brebel Exp $ 00003 // 00004 //ANtpTruthInfoAtm.cxx 00005 // 00006 //B. Rebel 1/2005 00008 00009 #include "AnalysisNtuples/ANtpTruthInfoAtm.h" 00010 #include "AnalysisNtuples/ANtpDefaultValue.h" 00011 #include "MessageService/MsgService.h" 00012 00013 #include <cassert> 00014 #include <algorithm> 00015 00016 ClassImp(ANtpTruthInfoAtm) 00017 00018 CVSID("$Id: ANtpTruthInfoAtm.cxx,v 1.7 2005/08/01 15:39:20 brebel Exp $"); 00019 00020 //------------------------------------------------------------------- 00021 ANtpTruthInfoAtm::ANtpTruthInfoAtm() : 00022 azimuth(ANtpDefVal::kFloat), 00023 baseLine(ANtpDefVal::kFloat), 00024 weight(1.) 00025 { 00026 00027 MSG("ANtpTruthInfoAtm", Msg::kDebug) << "ANtpTruthInfoAtm::Constructor" << endl; 00028 00029 } 00030 00031 //---------------------------------------------------------------------- 00032 ANtpTruthInfoAtm::~ANtpTruthInfoAtm() 00033 { 00034 00035 MSG("ANtpTruthInfoAtm", Msg::kDebug) << "ANtpTruthInfoAtm::Destructor" << endl; 00036 00037 } 00038 00039 //---------------------------------------------------------------------- 00040 void ANtpTruthInfoAtm::Reset() 00041 { 00042 00043 ANtpTruthInfo::Reset(); 00044 azimuth = ANtpDefVal::kFloat; 00045 baseLine = ANtpDefVal::kFloat; 00046 weight = 1.; 00047 00048 return; 00049 }
1.3.9.1