a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
ComputeObservables.cpp
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2013 HEPfit Collaboration
3  *
4  *
5  * For the licensing terms see doc/COPYING.
6  */
7 
8 #include "Observable.h"
9 #include "Observable2D.h"
11 #include "ComputeObservables.h"
12 #include <boost/algorithm/string/predicate.hpp>
13 
15  const std::string& ModelConf_i, const int rank_i)
16 : myInputParser(ModelF, ThObsF),
17  rank(rank_i)
18 {
19 
20  std::string ModelName = myInputParser.ReadParameters(ModelConf_i, rank, ModPars, Obs, Obs2D, CGO, CGP);
21  std::map<std::string, double> DP;
22  for (std::vector<ModelParameter>::iterator it = ModPars.begin(); it < ModPars.end(); it++) {
23  DP[it->getname()] = it->getave();
24  paraNames.push_back(it->getname());
25  }
26  DPars = DP;
27 
28  for (boost::ptr_vector<Observable>::iterator it = Obs.begin(); it < Obs.end(); it++) {
29  DObs.insert(std::pair<std::string, double> (it->getThname() , 0.));
30  DThObs.insert(std::pair<std::string, ThObservable*> (it->getThname() , it->getTho()));
31  }
32  for (std::vector<CorrelatedGaussianObservables>::iterator it1 = CGO.begin(); it1 < CGO.end(); it1++) {
33  std::vector<Observable> ObsInCGO = it1->getObs();
34  for (std::vector<Observable>::iterator it2 = ObsInCGO.begin(); it2 < ObsInCGO.end(); it2++) {
35  DObs.insert(std::pair<std::string, double> (it2->getThname() , 0.));
36  DThObs.insert(std::pair<std::string, ThObservable*> (it2->getThname() , it2->getTho()));
37  }
38  }
39 
41  if (!Mod->Init(DP)) {
42  if (myInputParser.getModel()->getmissingModelParameters().size() > 0) {
43  std::cout << "\nPlease set the following parameters in the model configuration files:\n" << std::endl;
44  for (std::vector<std::string>::iterator it = myInputParser.getModel()->getmissingModelParameters().begin(); it != myInputParser.getModel()->getmissingModelParameters().end(); it++) {
45  std::cout << "ModelParameter\t" << *it << std::endl;
46  }
47  std::cout << std::endl;
49  }
50  throw std::runtime_error("ERROR: Parameter(s) missing in model initialization.\n");
51  }
52 
54  if (unknownParameters.size() > 0 && rank == 0) {
55  std::cout << "\n" << std::endl;
56  for (std::vector<std::string>::iterator it = unknownParameters.begin(); it != unknownParameters.end(); it++)
57  std::cout << "WARNING: unknown parameter " << *it << " not added." << std::endl;
58  }
59 }
60 
62  const std::string& ModelName_i, std::map<std::string, double> DPars_i, std::map<std::string, std::string> DFlags_i,
63  const int rank_i)
64 : ModelName(ModelName_i),
65  myInputParser(ModelF, ThObsF),
66  rank(rank_i)
67 {
68  for (std::map<std::string, double>::iterator it = DPars_i.begin(); it != DPars_i.end(); it++) {
69  paraNames.push_back(it->first);
70  }
74  if (Mod->IsModelInitialized()) {
75  if (rank == 0) std::cout << "\nModel Initialized: " << ModelName << std::endl;
76  } else {
77  throw std::runtime_error("\nERROR: " + ModelName + " not initialized successfully.\n");
78  }
79  setFlags(DFlags_i);
80  if (!Mod->Init(DPars_i)) {
81  if (myInputParser.getModel()->getmissingModelParameters().size() > 0) {
82  std::cout << "\nPlease set the following parameters in the model configuration files:\n" << std::endl;
83  for (std::vector<std::string>::iterator it = myInputParser.getModel()->getmissingModelParameters().begin(); it != myInputParser.getModel()->getmissingModelParameters().end(); it++) {
84  std::cout << "ModelParameter\t" << *it << std::endl;
85  }
86  std::cout << std::endl;
88  }
89  throw std::runtime_error("\nERROR: " + ModelName + " cannot be initialized.\n");
90  }
91 
93  if (unknownParameters.size() > 0 && rank == 0) {
94  std::cout << "\n" << std::endl;
95  for (std::vector<std::string>::iterator it = unknownParameters.begin(); it != unknownParameters.end(); it++)
96  std::cout << "WARNING: unknown parameter " << *it << " not added to MCMC" << std::endl;
97  }
98 }
99 
101 {
102  Obs.clear();
103  boost::ptr_vector<Observable>().swap(Obs);
104  Mod = NULL;
105 }
106 
107 void ComputeObservables::setFlags(std::map<std::string, std::string> DFlags_i)
108 {
109  for (std::map<std::string, std::string>::iterator it = DFlags_i.begin(); it != DFlags_i.end(); it++) {
110  if (!(boost::iequals(it->second, "true")) && !(boost::iequals(it->second, "false")) && !Mod->setFlagStr(it->first, it->second)) {
111  throw std::runtime_error("ERROR: setFlagStr error for " + it->first);
112  } else if (boost::iequals(it->second, "true") && !Mod->setFlag(it->first, 1)) {
113  throw std::runtime_error("ERROR: setFlag error for " + it->first);
114  } else if (boost::iequals(it->second, "false") && !Mod->setFlag(it->first, 0)) {
115  throw std::runtime_error("ERROR: setFlag error for " + it->first);
116  } else {
117  if (rank == 0) std::cout << "set flag " << it->first << " = " << it->second << std::endl;
118  }
119  }
120 }
121 
122 std::map<std::string, double> ComputeObservables::compute(std::map<std::string, double> DP)
123 {
124  if (DP != DPars)
125  for (std::map<std::string, double>::iterator it = DP.begin(); it != DP.end(); it++) {
126  if(!(std::find(paraNames.begin(), paraNames.end(), it->first) != paraNames.end()))
127  throw std::runtime_error("\nERROR: Incorrect parameter name " + it->first + " passed to ComputeObservable");
128  }
129  DPars = DP;
130  Mod->Update(DPars);
131  for (std::map<std::string, double>::iterator it = DObs.begin(); it != DObs.end(); it++) {
132  DObs[it->first] = DThObs[it->first]->computeThValue();
133  }
134  return(DObs);
135 }
136 
137 void ComputeObservables::RemoveObservable(std::string ObsName)
138 {
139  if(DObs.find(ObsName) == DObs.end())
140  throw std::runtime_error("\nERROR: Observable cannot be removed since it has not been added.\n");
141  DObs.erase(ObsName);
142  if(DThObs.find(ObsName) == DThObs.end())
143  throw std::runtime_error("\nERROR: ThObservable cannot be removed since it has not been added.\n");
144  DThObs.erase(ObsName);
145 }
146 
147 void ComputeObservables::AddObservable(std::string ObsName)
148 {
149  DThObs[ObsName] = myInputParser.getObsFactory().CreateThMethod(ObsName, *Mod);
150  DObs.insert(std::pair<std::string, double> (ObsName , 0.));
151 }
152 
153 void ComputeObservables::addCustomObservableType(const std::string name, boost::function<Observable*() > funct){
155 }
ComputeObservables::~ComputeObservables
virtual ~ComputeObservables()
The default destructor.
Definition: ComputeObservables.cpp:100
ComputeObservables::ComputeObservables
ComputeObservables(ModelFactory &ModelF, ThObsFactory &ThObsF, const std::string &ModelConf_i, const int rank_i=0)
Constructor.
Definition: ComputeObservables.cpp:14
ModelFactory
A class for.
Definition: ModelFactory.h:25
ComputeObservables::Obs
boost::ptr_vector< Observable > Obs
Definition: ComputeObservables.h:141
Model::getmissingModelParameters
std::vector< std::string > getmissingModelParameters()
Definition: Model.h:237
ComputeObservables::ModelName
std::string ModelName
Name of the Model to be used.
Definition: ComputeObservables.h:130
ComputeObservables::DObs
std::map< std::string, double > DObs
Map of the observables to be computed.
Definition: ComputeObservables.h:134
ComputeObservables::DPars
std::map< std::string, double > DPars
Map of the parameters to be passed to Model.
Definition: ComputeObservables.h:133
StandardModel::setFlag
virtual bool setFlag(const std::string name, const bool value)
A method to set a flag of StandardModel.
Definition: StandardModel.cpp:378
ComputeObservables::CGO
std::vector< CorrelatedGaussianObservables > CGO
Definition: ComputeObservables.h:143
InputParser::ReadParameters
std::string ReadParameters(const std::string filename_i, const int rank, std::vector< ModelParameter > &ModelPars, boost::ptr_vector< Observable > &Observables, std::vector< Observable2D > &Observables2D, std::vector< CorrelatedGaussianObservables > &CGO, std::vector< CorrelatedGaussianParameters > &CGP)
The member that parses the Observable2D directives from SomeModel.conf file.
Definition: InputParser.cpp:35
ThObsFactory
A class for.
Definition: ThObsFactory.h:26
StandardModel::Init
virtual bool Init(const std::map< std::string, double > &DPars)
A method to initialize the model parameters.
Definition: StandardModel.cpp:159
ComputeObservables::setFlags
void setFlags(std::map< std::string, std::string > DFlags_i)
This method sets the necessary flag for the requested model.
Definition: ComputeObservables.cpp:107
ComputeObservables::Mod
StandardModel * Mod
Pointer to an object of the class StandardModel.
Definition: ComputeObservables.h:131
InputParser::getModel
StandardModel * getModel() const
A get method to access the pointer to the object of the StandardModel class.
Definition: InputParser.h:109
Observable.h
ComputeObservables::RemoveObservable
void RemoveObservable(std::string ObsName)
A method to add an observable to the list of observables.
Definition: ComputeObservables.cpp:137
Observable
A class for observables.
Definition: Observable.h:28
StandardModel::setFlagStr
virtual bool setFlagStr(const std::string name, const std::string value)
A method to set a flag of StandardModel.
Definition: StandardModel.cpp:418
Model::IsModelInitialized
bool IsModelInitialized() const
A method to check if the model is initialized.
Definition: Model.h:136
ComputeObservables::rank
const int rank
< Rank of the MPI process. Set to 0 for serial run.
Definition: ComputeObservables.h:138
Model::setModelName
void setModelName(const std::string name)
A method to set the name of the model.
Definition: Model.h:50
ComputeObservables.h
ComputeObservables::Obs2D
std::vector< Observable2D > Obs2D
Definition: ComputeObservables.h:142
StandardModel::InitializeModel
virtual bool InitializeModel()
A method to initialize the model.
Definition: StandardModel.cpp:140
Observable2D.h
InputParser::addCustomObservableType
void addCustomObservableType(const std::string name, boost::function< Observable *() > funct)
Definition: InputParser.cpp:250
ModelFactory::CreateModel
StandardModel * CreateModel(const std::string &ModelName)
Definition: ModelFactory.cpp:74
StandardModel::Update
virtual bool Update(const std::map< std::string, double > &DPars)
The update method for StandardModel.
Definition: StandardModel.cpp:183
ComputeObservables::CGP
std::vector< CorrelatedGaussianParameters > CGP
Definition: ComputeObservables.h:144
ComputeObservables::DThObs
std::map< std::string, ThObservable * > DThObs
Definition: ComputeObservables.h:137
ComputeObservables::compute
std::map< std::string, double > compute(std::map< std::string, double > DP)
The method used to compute observables.
Definition: ComputeObservables.cpp:122
ComputeObservables::ModPars
std::vector< ModelParameter > ModPars
Definition: ComputeObservables.h:140
ComputeObservables::unknownParameters
std::vector< std::string > unknownParameters
Definition: ComputeObservables.h:139
ComputeObservables::addCustomObservableType
void addCustomObservableType(const std::string name, boost::function< Observable *() > funct)
A method to add a user defined observable with a user defined likelihood.
Definition: ComputeObservables.cpp:153
InputParser::getObsFactory
const ThObsFactory & getObsFactory() const
Definition: InputParser.h:114
InputParser::getModelFactory
ModelFactory & getModelFactory() const
Definition: InputParser.h:119
CorrelatedGaussianObservables.h
ComputeObservables::myInputParser
InputParser myInputParser
An object of the InputParser class.
Definition: ComputeObservables.h:132
QCD::getUnknownParameters
std::vector< std::string > getUnknownParameters()
A method to get the vector of the parameters that have been specified in the configuration file but n...
Definition: QCD.h:467
ThObsFactory::CreateThMethod
ThObservable * CreateThMethod(const std::string &name, StandardModel &model) const
This method checks for the existence of an observable of a specific name in the map thobs and returns...
Definition: ThObsFactory.cpp:4860
ComputeObservables::AddObservable
void AddObservable(std::string ObsName)
A method to remove an observable from the list of observables.
Definition: ComputeObservables.cpp:147
ComputeObservables::paraNames
std::vector< std::string > paraNames
The vector of allowed parameter names.
Definition: ComputeObservables.h:136