Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooStudyManager.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitCore *
4 * File: $Id$
5 * Authors: *
6 * WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu *
7 * DK, David Kirkby, UC Irvine, dkirkby@uci.edu *
8 * *
9 * Copyright (c) 2000-2005, Regents of the University of California *
10 * and Stanford University. All rights reserved. *
11 * *
12 * Redistribution and use in source and binary forms, *
13 * with or without modification, are permitted according to the terms *
14 * listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
15 *****************************************************************************/
16#ifndef ROO_STUDY_MANAGER
17#define ROO_STUDY_MANAGER
18
19#include "TNamed.h"
20
21class RooAbsPdf;
22class RooDataSet ;
23class RooAbsData ;
24class RooFitResult ;
25class RooPlot ;
26class RooRealVar ;
27class RooWorkspace ;
28class RooAbsStudy ;
29#include "RooStudyPackage.h"
30#include <list>
31#include <string>
32
33class RooStudyManager : public TNamed {
34public:
35
38 RooStudyManager(const char* studyPackFileName) ;
39 void addStudy(RooAbsStudy& study) ;
40
41 // Interactive running
42 void run(Int_t nExperiments) ;
43
44 // PROOF-based paralllel running
45 void runProof(Int_t nExperiments, const char* proofHost="", Bool_t showGui=kTRUE) ;
46 static void closeProof(Option_t *option = "s") ;
47
48 // Batch running
49 void prepareBatchInput(const char* studyName, Int_t nExpPerJob, Bool_t unifiedInput) ;
50 void processBatchOutput(const char* filePat) ;
51
52 RooWorkspace& wspace() { return _pkg->wspace() ; }
53 std::list<RooAbsStudy*>& studies() { return _pkg->studies() ; }
54
55protected:
56
57 void aggregateData(TList* olist) ;
58 void expandWildCardSpec(const char* spec, std::list<std::string>& result) ;
59
61
63
64 ClassDef(RooStudyManager,1) // A general purpose workspace oriented parallelizing study manager
65} ;
66
67
68#endif
69
const Bool_t kTRUE
Definition RtypesCore.h:91
const char Option_t
Definition RtypesCore.h:66
#define ClassDef(name, id)
Definition Rtypes.h:325
RooAbsData is the common abstract base class for binned and unbinned datasets.
Definition RooAbsData.h:49
RooAbsStudy is an abstract base class for RooStudyManager modules.
Definition RooAbsStudy.h:33
RooDataSet is a container class to hold unbinned data.
Definition RooDataSet.h:33
RooFitResult is a container class to hold the input and output of a PDF fit to a dataset.
A RooPlot is a plot frame and a container for graphics objects within that frame.
Definition RooPlot.h:44
RooRealVar represents a variable that can be changed from the outside.
Definition RooRealVar.h:39
RooStudyManager is a utility class to manage studies that consist of repeated applications of generat...
void runProof(Int_t nExperiments, const char *proofHost="", Bool_t showGui=kTRUE)
Open PROOF-Lite session.
void prepareBatchInput(const char *studyName, Int_t nExpPerJob, Bool_t unifiedInput)
void expandWildCardSpec(const char *spec, std::list< std::string > &result)
case with one single file
void run(Int_t nExperiments)
void processBatchOutput(const char *filePat)
void addStudy(RooAbsStudy &study)
static void closeProof(Option_t *option="s")
"Option_t *option" takes the parameters forwarded to gProof->Close(option).
RooStudyManager(const RooStudyManager &)
RooStudyPackage * _pkg
std::list< RooAbsStudy * > & studies()
RooWorkspace & wspace()
void aggregateData(TList *olist)
RooStudyPackage is a utility class to manage studies that consist of repeated applications of generat...
RooWorkspace & wspace()
std::list< RooAbsStudy * > & studies()
The RooWorkspace is a persistable container for RooFit projects.
A doubly linked list.
Definition TList.h:44
The TNamed class is the base class for all named ROOT classes.
Definition TNamed.h:29