//*-- Author : Dan Magestro
//*-- Created: 01/10/01
//*-- Last modified: 07/11/01

//_HADES_CLASS_DESCRIPTION 
/////////////////////////////////////////////////////////////////////////
//
//  HCut
//
//  This class is the base class for all cut classes. Currently this
//  class doesn't do much itself.
//
// BEGIN_HTML<b><font color="maroon">For more information, see the <a href="http://www-hades.gsi.de/computing/phyana/">PhyAna documentation<a>.</font></b> END_HTML
//
/////////////////////////////////////////////////////////////////////////

#include <time.h>
#include <iostream> 
#include "TNamed.h"
#include "phyanadef.h"
#include "hcut.h"
#include "hades.h"

HCut::HCut() : TNamed() {
// Default constructor
  fNCheck = 0;
  fNGood = 0;

}

HCut::HCut(const Text_t *name, const Text_t *title)
         : TNamed(name, title) {
// Default constructor
  fNCheck = 0;
  fNGood = 0;
}

ClassImp(HCut)

Last change: Sat May 22 12:54:14 2010
Last generated: 2010-05-22 12:54

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.