00001 00002 // 00003 // GeoSwimStack 00004 // 00005 // January 20, 2006 M.Ishitsuka First version for GeoSwimmer 00006 // ref. PTSimStack.cxx by S. Kasahara 05/04 00007 // 00009 00010 #include <TParticle.h> 00011 00012 #include <map> 00013 #include <algorithm> 00014 using namespace std; 00015 00016 #include "GeoSwimmer/GeoSwimStack.h" 00017 #include "MessageService/MsgService.h" 00018 00019 ClassImp(GeoSwimStack) 00020 00021 CVSID("$Id: GeoSwimStack.cxx,v 1.1 2007/10/04 07:20:01 ishi Exp $"); 00022 00023 std::ostream& operator << (std::ostream& os, const GeoSwimStack& ps) 00024 { return ps.Print(os); } 00025 00026 //_________________________________________________________ 00027 GeoSwimStack::GeoSwimStack() 00028 { 00029 // Default constructor 00030 00031 MSG("GeoSwim",Msg::kVerbose) << "GeoSwimStack def ctor @ " << this << endl; 00032 00033 } 00034 00035 //__________________________________________________________ 00036 GeoSwimStack::~GeoSwimStack() { 00037 // delete all the owned sub-objects 00038 00039 MSG("GeoSwim",Msg::kVerbose) << "GeoSwimStack dtor @ " << this << endl; 00040 } 00041 00042 00043 //_________________________________________________________ 00044 void GeoSwimStack::Reset() 00045 { 00046 // Default constructor 00047 00048 MCAppStack<MCAppParticle>::Reset(); 00049 00050 }
1.3.9.1