// $Id: hrichcuto.cc,v 1.2 2006/08/12 12:53:08 halo Exp $
// Last update by Thomas Eberl: 03/01/15 16:58:56
// analogous to Dan's class in phyana

//_HADES_CLASS_DESCRIPTION 
/////////////////////////////////////////////////////////////////////////
//
//  HRichCutO
//
//  This class is the base class for all cut classes. Currently this
//  class doesn't do much itself.
//
/////////////////////////////////////////////////////////////////////////
using namespace std;
#include <iostream>
#include <iomanip>
#include <TNamed.h>
#include "hrichcuto.h"
#include "hades.h"

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

}

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

ClassImp(HRichCutO)


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.