// @(#)root/geom:$Name:  $:$Id: TGeoBoolCombinator.cxx,v 1.2 2002/07/10 19:24:16 brun Exp $
// Author: Andrei Gheata   15/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.             *
 *************************************************************************/

////////////////////////////////////////////////////////////////////////////////
// TGeoBoolCombinator
//
//
//
//
//
/*

*/
//

#include "TNamed.h"
#include "TGeoBoolCombinator.h"

// statics and globals

ClassImp(TGeoBoolCombinator)

//-----------------------------------------------------------------------------
 TGeoBoolCombinator::TGeoBoolCombinator()
{
// Default constructor
}
//-----------------------------------------------------------------------------
 TGeoBoolCombinator::TGeoBoolCombinator(const char *name, const char *formula)
                   :TNamed(name, formula)
{
// constructor
   if (!Compile()) {
      Error("ctor", "invalid formula");
   }
}
//-----------------------------------------------------------------------------
 TGeoBoolCombinator::~TGeoBoolCombinator()
{
// Destructor
}
//-----------------------------------------------------------------------------
 Bool_t TGeoBoolCombinator::Compile()
{
// compiles the formula and returns true if it is OK
   return kFALSE; 
}



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.