Logo ROOT  
Reference Guide
Measurement.h
Go to the documentation of this file.
1// @(#)root/roostats:$Id$
2// Author: George Lewis, Kyle Cranmer
3/*************************************************************************
4 * Copyright (C) 1995-2008, Rene Brun and Fons Rademakers. *
5 * All rights reserved. *
6 * *
7 * For the licensing terms see $ROOTSYS/LICENSE. *
8 * For the list of contributors see $ROOTSYS/README/CREDITS. *
9 *************************************************************************/
10
11#ifndef HISTFACTORY_MEASUREMENT_H
12#define HISTFACTORY_MEASUREMENT_H
13
14#include <string>
15#include <map>
16#include <fstream>
17#include <iostream>
18
19#include "TObject.h"
20#include "TFile.h"
21
22
23#include "PreprocessFunction.h"
26
27namespace RooStats{
28namespace HistFactory {
29
30class Measurement : public TNamed {
31
32
33public:
34
36 /// Measurement( const Measurement& other ); // Copy
37 Measurement(const char* Name, const char* Title="");
38
39 /// set output prefix
40 void SetOutputFilePrefix( const std::string& prefix ) { fOutputFilePrefix = prefix; }
41 /// retrieve prefix for output files
42 std::string GetOutputFilePrefix() { return fOutputFilePrefix; }
43
44 /// insert PoI at beginning of vector of PoIs
45 void SetPOI( const std::string& POI ) { fPOI.insert( fPOI.begin(), POI ); }
46 /// append parameter to vector of PoIs
47 void AddPOI( const std::string& POI ) { fPOI.push_back(POI); }
48 /// get name of PoI at given index
49 std::string GetPOI(unsigned int i=0) { return fPOI.at(i); }
50 /// get vector of PoI names
51 std::vector<std::string>& GetPOIList() { return fPOI; }
52
53
54 /// Add a parameter to be set as constant
55 /// (Similar to ParamSetting method below)
56 void AddConstantParam( const std::string& param );
57 /// empty vector of constant parameters
59 /// get vector of all constant parameters
60 std::vector< std::string >& GetConstantParams() { return fConstantParams; }
61
62 /// Set a parameter to a specific value
63 /// (And optionally fix it)
64 void SetParamValue( const std::string& param, double value);
65 /// get map: parameter name <--> parameter value
66 std::map<std::string, double>& GetParamValues() { return fParamValues; }
67 /// clear map of parameter values
68 void ClearParamValues() { fParamValues.clear(); }
69
70 void AddPreprocessFunction( std::string name, std::string expression, std::string dependencies );
71 /// add a preprocess function object
73 void SetFunctionObjects( std::vector< RooStats::HistFactory::PreprocessFunction > objects ) { fFunctionObjects = objects; }
74 /// get vector of defined function objects
75 std::vector< RooStats::HistFactory::PreprocessFunction >& GetFunctionObjects() { return fFunctionObjects; }
76 std::vector< std::string > GetPreprocessFunctions();
77
78 /// get vector of defined Asimov Datasets
79 std::vector< RooStats::HistFactory::Asimov >& GetAsimovDatasets() { return fAsimovDatasets; }
80 /// add an Asimov Dataset
81 void AddAsimovDataset( RooStats::HistFactory::Asimov dataset ) { fAsimovDatasets.push_back(dataset); }
82
83 /// set integrated luminosity used to normalise histograms (if NormalizeByTheory is true for this sample)
84 void SetLumi(double Lumi ) { fLumi = Lumi; }
85 /// set relative uncertainty on luminosity
86 void SetLumiRelErr( double RelErr ) { fLumiRelErr = RelErr; }
87 /// retrieve integrated luminosity
88 double GetLumi() { return fLumi; }
89 /// retrieve relative uncertainty on luminosity
90 double GetLumiRelErr() { return fLumiRelErr; }
91
92 void SetBinLow( int BinLow ) { fBinLow = BinLow; }
93 void SetBinHigh ( int BinHigh ) { fBinHigh = BinHigh; }
94 int GetBinLow() { return fBinLow; }
95 int GetBinHigh() { return fBinHigh; }
96
97 /// do not produce any plots or tables, just save the model
98 void SetExportOnly( bool ExportOnly ) { fExportOnly = ExportOnly; }
99 bool GetExportOnly() { return fExportOnly; }
100
101
102 void PrintTree( std::ostream& = std::cout ); /// Print to a stream
103 void PrintXML( std::string Directory="", std::string NewOutputPrefix="" );
104
105 std::vector< RooStats::HistFactory::Channel >& GetChannels() { return fChannels; }
107 /// add a completely configured channel
108 void AddChannel( RooStats::HistFactory::Channel chan ) { fChannels.push_back( chan ); }
109
110 bool HasChannel( std::string );
111 void writeToFile( TFile* file );
112
113 void CollectHistograms();
114
115
116 void AddGammaSyst(std::string syst, double uncert);
117 void AddLogNormSyst(std::string syst, double uncert);
118 void AddUniformSyst(std::string syst);
119 void AddNoSyst(std::string syst);
120
121 std::map< std::string, double >& GetGammaSyst() { return fGammaSyst; }
122 std::map< std::string, double >& GetUniformSyst() { return fUniformSyst; }
123 std::map< std::string, double >& GetLogNormSyst() { return fLogNormSyst; }
124 std::map< std::string, double >& GetNoSyst() { return fNoSyst; }
125
126
127private:
128
129 /// Configurables of this measurement
130 std::string fOutputFilePrefix;
131 std::vector<std::string> fPOI;
132 double fLumi;
138
139 /// Channels that make up this measurement
140 std::vector< RooStats::HistFactory::Channel > fChannels;
141
142 /// List of Parameters to be set constant
143 std::vector< std::string > fConstantParams;
144
145 /// Map of parameter names to inital values to be set
146 std::map< std::string, double > fParamValues;
147
148 /// List of Preprocess Function objects
149 std::vector< RooStats::HistFactory::PreprocessFunction > fFunctionObjects;
150
151 /// List of Asimov datasets to generate
152 std::vector< RooStats::HistFactory::Asimov > fAsimovDatasets;
153
154 /// List of Alternate constraint terms
155 std::map< std::string, double > fGammaSyst;
156 std::map< std::string, double > fUniformSyst;
157 std::map< std::string, double > fLogNormSyst;
158 std::map< std::string, double > fNoSyst;
159
160 std::string GetDirPath( TDirectory* dir );
161
163
164};
165
166} // namespace HistFactory
167} // namespace RooStats
168
169#endif
#define ClassDef(name, id)
Definition: Rtypes.h:322
char name[80]
Definition: TGX11.cxx:109
TODO Here, we are missing some documentation.
Definition: Asimov.h:22
This class encapsulates all information for the statistical interpretation of one experiment.
Definition: Channel.h:29
The RooStats::HistFactory::Measurement class can be used to construct a model by combining multiple R...
Definition: Measurement.h:30
void writeToFile(TFile *file)
A measurement, once fully configured, can be saved into a ROOT file.
std::string fOutputFilePrefix
Configurables of this measurement.
Definition: Measurement.h:130
void AddGammaSyst(std::string syst, double uncert)
Set constraint term for given systematic to Gamma distribution.
std::map< std::string, double > fGammaSyst
List of Alternate constraint terms.
Definition: Measurement.h:155
void ClearParamValues()
clear map of parameter values
Definition: Measurement.h:68
std::map< std::string, double > & GetGammaSyst()
Definition: Measurement.h:121
std::map< std::string, double > & GetLogNormSyst()
Definition: Measurement.h:123
std::string GetDirPath(TDirectory *dir)
Return the directory's path, stripped of unnecessary prefixes.
std::map< std::string, double > & GetParamValues()
get map: parameter name <--> parameter value
Definition: Measurement.h:66
std::map< std::string, double > & GetNoSyst()
Definition: Measurement.h:124
void SetExportOnly(bool ExportOnly)
do not produce any plots or tables, just save the model
Definition: Measurement.h:98
void AddPOI(const std::string &POI)
append parameter to vector of PoIs
Definition: Measurement.h:47
std::vector< std::string > & GetPOIList()
get vector of PoI names
Definition: Measurement.h:51
void AddLogNormSyst(std::string syst, double uncert)
Set constraint term for given systematic to LogNormal distribution.
void PrintXML(std::string Directory="", std::string NewOutputPrefix="")
Print to a stream.
void SetLumi(double Lumi)
set integrated luminosity used to normalise histograms (if NormalizeByTheory is true for this sample)
Definition: Measurement.h:84
RooStats::HistFactory::Channel & GetChannel(std::string)
Get channel with given name from this measurement throws an exception in case the channel is not foun...
void SetParamValue(const std::string &param, double value)
Set a parameter to a specific value (And optionally fix it)
Definition: Measurement.cxx:89
double GetLumiRelErr()
retrieve relative uncertainty on luminosity
Definition: Measurement.h:90
std::map< std::string, double > fLogNormSyst
Definition: Measurement.h:157
std::map< std::string, double > & GetUniformSyst()
Definition: Measurement.h:122
std::map< std::string, double > fNoSyst
Definition: Measurement.h:158
std::vector< std::string > & GetConstantParams()
get vector of all constant parameters
Definition: Measurement.h:60
void CollectHistograms()
The most common way to add histograms to channels is to have them stored in ROOT files and to give Hi...
void AddChannel(RooStats::HistFactory::Channel chan)
add a completely configured channel
Definition: Measurement.h:108
void SetOutputFilePrefix(const std::string &prefix)
set output prefix
Definition: Measurement.h:40
bool HasChannel(std::string)
Check if the given channel is part of this measurement.
std::vector< std::string > fConstantParams
List of Parameters to be set constant.
Definition: Measurement.h:143
void AddUniformSyst(std::string syst)
Set constraint term for given systematic to uniform distribution.
std::vector< RooStats::HistFactory::PreprocessFunction > fFunctionObjects
List of Preprocess Function objects.
Definition: Measurement.h:149
std::map< std::string, double > fParamValues
Map of parameter names to inital values to be set.
Definition: Measurement.h:146
void PrintTree(std::ostream &=std::cout)
Print information about measurement object in tree-like structure to given stream.
std::vector< RooStats::HistFactory::Channel > & GetChannels()
Definition: Measurement.h:105
std::vector< RooStats::HistFactory::Asimov > & GetAsimovDatasets()
get vector of defined Asimov Datasets
Definition: Measurement.h:79
Measurement()
Standard constructor.
Definition: Measurement.cxx:38
void AddNoSyst(std::string syst)
Define given systematics to have no external constraint.
void SetPOI(const std::string &POI)
insert PoI at beginning of vector of PoIs
Definition: Measurement.h:45
std::string GetOutputFilePrefix()
retrieve prefix for output files
Definition: Measurement.h:42
void AddConstantParam(const std::string &param)
Add a parameter to be set as constant (Similar to ParamSetting method below)
Definition: Measurement.cxx:71
std::vector< RooStats::HistFactory::Asimov > fAsimovDatasets
List of Asimov datasets to generate.
Definition: Measurement.h:152
void AddFunctionObject(const RooStats::HistFactory::PreprocessFunction function)
add a preprocess function object
Definition: Measurement.h:72
void ClearConstantParams()
empty vector of constant parameters
Definition: Measurement.h:58
std::vector< RooStats::HistFactory::PreprocessFunction > & GetFunctionObjects()
get vector of defined function objects
Definition: Measurement.h:75
void SetFunctionObjects(std::vector< RooStats::HistFactory::PreprocessFunction > objects)
Definition: Measurement.h:73
void AddPreprocessFunction(std::string name, std::string expression, std::string dependencies)
Add a preprocessed function by giving the function a name, a functional expression,...
void SetLumiRelErr(double RelErr)
set relative uncertainty on luminosity
Definition: Measurement.h:86
std::vector< std::string > fPOI
Definition: Measurement.h:131
double GetLumi()
retrieve integrated luminosity
Definition: Measurement.h:88
void AddAsimovDataset(RooStats::HistFactory::Asimov dataset)
add an Asimov Dataset
Definition: Measurement.h:81
std::map< std::string, double > fUniformSyst
Definition: Measurement.h:156
std::string GetPOI(unsigned int i=0)
get name of PoI at given index
Definition: Measurement.h:49
std::vector< std::string > GetPreprocessFunctions()
Returns a list of defined preprocess function expressions.
std::vector< RooStats::HistFactory::Channel > fChannels
Channels that make up this measurement.
Definition: Measurement.h:140
Describe directory structure in memory.
Definition: TDirectory.h:40
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format.
Definition: TFile.h:53
The TNamed class is the base class for all named ROOT classes.
Definition: TNamed.h:29
void function(const Char_t *name_, T fun, const Char_t *docstring=0)
Definition: RExports.h:151
@ HistFactory
Definition: RooGlobalFunc.h:69
Namespace for the RooStats classes.
Definition: Asimov.h:19
Definition: file.py:1
const char * Name
Definition: TXMLSetup.cxx:66
const char * Title
Definition: TXMLSetup.cxx:67