00001 #include <iostream> 00002 #include "TClonesArray.h" 00003 #include "NueAna/BagTree.h" 00004 #include "NueAna/MCNNBestMatch.h" 00005 #include "AnalysisNtuples/ANtpDefaultValue.h" 00006 00007 ClassImp(BagTree) 00008 00009 BagTree::BagTree() 00010 { 00011 Reset(); 00012 } 00013 00014 BagTree::BagTree(const BagTree *mv): 00015 hePID(mv->hePID), 00016 bt_var1(mv->bt_var1), 00017 bt_var2(mv->bt_var2), 00018 bt_var3(mv->bt_var3) 00019 { 00020 } 00021 00022 BagTree::~BagTree() 00023 { 00024 // std::cout<<"in BagTree destructor"<<std::endl; 00025 } 00026 00027 void BagTree::Clear(Option_t* /* option */) 00028 { 00029 } 00030 00031 void BagTree::Reset() 00032 { 00033 hePID= ANtpDefVal::kDouble; //<-- open variable. 00034 bt_var1= ANtpDefVal::kDouble; 00035 bt_var2= ANtpDefVal::kDouble; 00036 bt_var3= ANtpDefVal::kDouble; 00037 00038 } 00039 00040 void BagTree::Print(Option_t * /*option*/) const 00041 { 00042 } 00043 00044 00045
1.3.9.1