Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

MCAppUser.cxx

Go to the documentation of this file.
00001 
00002 //
00003 // MCAppUser
00004 //
00005 // MCAppUser is a pure virtual base class to be used to define the required
00006 // interface of derived vmc Application classes, e.g. PTSimApplication
00007 // and GeoSwimmerApplication.
00008 //
00009 // Author:  S. Kasahara 10/06
00010 //
00011 // Notes: This class contains a subset of the methods defined in
00012 //        $ROOTSYS/vmc/inc/TVirtualMCAppUser class.
00013 //
00015 
00016 #include "MCApplication/MCAppUser.h"
00017 #include "MessageService/MsgService.h"
00018 
00019 ClassImp(MCAppUser)
00020 
00021 CVSID("$Id: MCAppUser.cxx,v 1.1 2006/10/16 02:09:43 schubert Exp $");
00022 
00023 //_____________________________________________________________________________
00024 
00025 MCAppUser::MCAppUser(const char *name, const char *title) 
00026   : TNamed(name,title)  {
00027   // Normal constructor
00028 
00029   MSG("MCApp",Msg::kDebug) << "MCAppUser normal ctor @ " << this << endl;
00030 
00031 }
00032 
00033 
00034 //_____________________________________________________________________________
00035 MCAppUser::~MCAppUser() {
00036   // Destructor.  Delete all owned sub-objects
00037 
00038   MSG("MCApp",Msg::kDebug) << "MCAppUser dtor @ " << this << endl;
00039 
00040 }

Generated on Mon Feb 15 11:06:57 2010 for loon by  doxygen 1.3.9.1