00001 // @(#)root/roostats:$Id: cranmer $ 00002 // Author: Kyle Cranmer, Akira Shibata 00003 /************************************************************************* 00004 * Copyright (C) 1995-2008, Rene Brun and Fons Rademakers. * 00005 * All rights reserved. * 00006 * * 00007 * For the licensing terms see $ROOTSYS/LICENSE. * 00008 * For the list of contributors see $ROOTSYS/README/CREDITS. * 00009 *************************************************************************/ 00010 00011 #include <cstdlib> 00012 #include <string> 00013 #include <TXMLNode.h> 00014 00015 #include "TList.h" 00016 #include "TFile.h" 00017 #include "TXMLAttr.h" 00018 00019 #include "RooStats/HistFactory/EstimateSummary.h" 00020 using namespace std; 00021 00022 // KC: Should make this a class and have it do some of what is done in MakeModelAndMeasurements 00023 00024 namespace RooStats{ 00025 namespace HistFactory { 00026 00027 typedef pair<double,double> UncertPair; 00028 void ReadXmlConfig( string, vector<RooStats::HistFactory::EstimateSummary>& , Double_t ); 00029 void AddSystematic( RooStats::HistFactory::EstimateSummary &, TXMLNode*, string, string,string); 00030 } 00031 }