// @(#)root/geom:$Name:  $:$Id: TGeoFinder.cxx,v 1.2 2002/07/10 19:24:16 brun Exp $
// Author: Andrei Gheata   18/01/02

/*************************************************************************
 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers.               *
 * All rights reserved.                                                  *
 *                                                                       *
 * For the licensing terms see $ROOTSYS/LICENSE.                         *
 * For the list of contributors see $ROOTSYS/README/CREDITS.             *
 *************************************************************************/

////////////////////////////////////////////////////////////////////////////////
// TGeoFinder class
//
//
//
//
//
/*



*/
//


/*************************************************************************
 * TGeoFinder - virtual base class for tracking inside a volume. 
 *  
 *************************************************************************/

#include "TGeoFinder.h"

ClassImp(TGeoFinder)

//-----------------------------------------------------------------------------
TGeoFinder::TGeoFinder()
{
// Default constructor
   fVolume = 0;
}
//-----------------------------------------------------------------------------
TGeoFinder::TGeoFinder(TGeoVolume *vol)
{
// Default constructor
   fVolume = vol;
}
//-----------------------------------------------------------------------------
 TGeoFinder::~TGeoFinder()
{
// Destructor
}
//-----------------------------------------------------------------------------


ROOT page - Class index - Top of the page

This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.