#ifndef _QSIGEXTTREEPDF_
#define _QSIGEXTTREEPDF_
#include "QSigExPDFs.h"
#include "QSigExDisTH.h"
#include "QTTreeUtils.h"
#include "debugger.h"
class QSigExTTreePDF: public QSigExPDFs{
public:
QSigExTTreePDF():QSigExPDFs(){
PRINTF2(this,"\tQSigExTTreePDF::QSigExTTreePDF()\n")
}
QSigExTTreePDF(TDirectory* dir,const Char_t* cardfilename=NULL):QSigExPDFs()
{
PRINTF6(this,"\tQSigExTTreePDF::QSigExTTreePDF(TDirectory* dir<",
dir,">,const Char_t* cardfilename<",cardfilename,">)\n")
try{
SetDir(dir);
LoadCardFile(cardfilename);
}catch(int e){
cout << "Exception handled by QSigExTTreePDF::QSigExTTreePDF\n";
throw e;
}
}
virtual ~QSigExTTreePDF(){}
protected:
QSigExDis* GetFunction(const QList<TString>& pdfentry, TDirectory* fluxdir, const TCut& fgcuts, QList<TString>* inputs, Bool_t *pdfneedscuts);
const Char_t* GetPDFName(Int_t i);
private:
ClassDef (QSigExTTreePDF,1)
};
#include "debugger.h"
#endif
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.