00001 00002 //$Id: ANtpAnalysisInfo.cxx,v 1.15 2008/09/03 10:41:05 bckhouse Exp $ 00003 // 00004 //ANtpAnalysisInfo.cxx 00005 // 00006 //B. Rebel 1/2-1e4-1e45 00008 00009 #include "AnalysisNtuples/ANtpAnalysisInfo.h" 00010 #include "AnalysisNtuples/ANtpDefaultValue.h" 00011 #include "MessageService/MsgService.h" 00012 00013 #include <cassert> 00014 #include <algorithm> 00015 00016 ClassImp(ANtpAnalysisInfo) 00017 00018 CVSID("$Id: ANtpAnalysisInfo.cxx,v 1.15 2008/09/03 10:41:05 bckhouse Exp $"); 00019 00020 //------------------------------------------------------------------- 00021 ANtpAnalysisInfo::ANtpAnalysisInfo() : 00022 isNC(0), 00023 isCC(0), 00024 separationParameterCut(ANtpDefVal::kFloat), 00025 separationParameter(ANtpDefVal::kFloat), 00026 separationParameterPAN(ANtpDefVal::kFloat), 00027 pass(0) 00028 { 00029 00030 MSG("ANtpAnalysisInfo", Msg::kDebug) << "ANtpAnalysisInfo::Constructor" << endl; 00031 00032 } 00033 00034 //---------------------------------------------------------------------- 00035 ANtpAnalysisInfo::~ANtpAnalysisInfo() 00036 { 00037 00038 // This message was responsible for the 00039 // "MsgService::Instance() creating the singleton a 2nd time 00040 // first one must have been destructed prematurely" 00041 // warnings on shutdown 00042 00043 // MSG("ANtpAnalysisInfo", Msg::kDebug) << "ANtpAnalysisInfo::Destructor" << endl; 00044 00045 } 00046 00047 //---------------------------------------------------------------------- 00048 void ANtpAnalysisInfo::Reset() 00049 { 00050 isNC = 0; 00051 isCC = 0; 00052 separationParameterCut = ANtpDefVal::kFloat; 00053 separationParameter = ANtpDefVal::kFloat; 00054 separationParameterPAN = ANtpDefVal::kFloat; 00055 pass = 0; 00056 00057 return; 00058 }
1.3.9.1