Go to the documentation of this file.00001 #include "ForIA/D3PD/GoodRunsListsWrapper.hh"
00002
00003 namespace ForIA{
00004
00005 GoodRunsListsWrapper::GoodRunsListsWrapper(const string &xmlFile){
00006 std::cout<<"ERROR: GoodRunsListsWrapper - GoodRunsLists package was not linked - using dummy GoodRunsLists wrapper"<<std::endl;
00007 throw std::runtime_error("GoodRunsLists are disabled - cannot call GoodRunsListsWrapper constructor!");
00008 }
00009
00010 bool GoodRunsListsWrapper::checkRun(const Event &evt) const{
00011 throw std::runtime_error("GoodRunsLists are disabled - cannot check status of Event run number!");
00012 return false;
00013 }
00014
00015 bool GoodRunsListsWrapper::checkLBN(const Event &evt) const{
00016 throw std::runtime_error("GoodRunsLists are disabled - cannot check status of Event Lumi Block!");
00017 return false;
00018 }
00019 }