//*-- 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.
//
// 
For more information, see the PhyAna documentation.

//
/////////////////////////////////////////////////////////////////////////

#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)


ROOT page - Class index - Class Hierarchy - 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.