00001 // @(#)root/vmc:$Id: TVirtualMCGeometry.cxx 20882 2007-11-19 11:31:26Z rdm $ 00002 // Authors: Alice collaboration 25/06/2002 00003 00004 /************************************************************************* 00005 * Copyright (C) 2006, Rene Brun and Fons Rademakers. * 00006 * Copyright (C) 2002, ALICE Experiment at CERN. * 00007 * All rights reserved. * 00008 * * 00009 * For the licensing terms see $ROOTSYS/LICENSE. * 00010 * For the list of contributors see $ROOTSYS/README/CREDITS. * 00011 *************************************************************************/ 00012 00013 #include "TVirtualMCGeometry.h" 00014 00015 //______________________________________________________________________________ 00016 // Virtual MCGeometry provides a virtual interface to Monte Carlo 00017 // geometry construction. 00018 //______________________________________________________________________________ 00019 00020 ClassImp(TVirtualMCGeometry) 00021 00022 //_____________________________________________________________________________ 00023 TVirtualMCGeometry::TVirtualMCGeometry(const char *name, const char *title) 00024 : TNamed(name,title) 00025 { 00026 // 00027 // Standard constructor 00028 // 00029 } 00030 00031 //_____________________________________________________________________________ 00032 TVirtualMCGeometry::TVirtualMCGeometry() 00033 : TNamed() 00034 { 00035 // 00036 // Default constructor 00037 // 00038 } 00039 00040 //_____________________________________________________________________________ 00041 TVirtualMCGeometry::~TVirtualMCGeometry() 00042 { 00043 // 00044 // Destructor 00045 // 00046 }