00001 /* 00002 * See header file for a description of this class. 00003 * 00004 * $Date: 2010/05/14 11:42:56 $ 00005 * $Revision: 1.2 $ 00006 * \author Paolo Ronchese INFN Padova 00007 * 00008 */ 00009 00010 //----------------------- 00011 // This Class' Header -- 00012 //----------------------- 00013 #include "CondFormats/DTObjects/interface/DTConfigAbstractHandler.h" 00014 00015 //------------------------------- 00016 // Collaborating Class Headers -- 00017 //------------------------------- 00018 //#include "CondCore/DBCommon/interface/TypedRef.h" 00019 //#include "CondFormats/DTObjects/interface/DTDBAbstractSession.h" 00020 00021 //--------------- 00022 // C++ Headers -- 00023 //--------------- 00024 #include <iostream> 00025 00026 //------------------- 00027 // Initializations -- 00028 //------------------- 00029 DTConfigAbstractHandler* DTConfigAbstractHandler::instance = 0; 00030 00031 //---------------- 00032 // Constructors -- 00033 //---------------- 00034 DTConfigAbstractHandler::DTConfigAbstractHandler() { 00035 } 00036 00037 00038 DTConfigAbstractHandler::~DTConfigAbstractHandler() { 00039 } 00040 00041 00042 //-------------- 00043 // Operations -- 00044 //-------------- 00046 DTConfigAbstractHandler* DTConfigAbstractHandler::getInstance() { 00047 return instance; 00048 } 00049 00050 00051 int DTConfigAbstractHandler::get( const edm::EventSetup& context, 00052 int cfgId, const DTKeyedConfig*& obj ) { 00053 obj = 0; 00054 return 999; 00055 } 00056 00057 00058 int DTConfigAbstractHandler::get( const DTKeyedConfigListRcd& keyRecord, 00059 int cfgId, const DTKeyedConfig*& obj ) { 00060 obj = 0; 00061 return 999; 00062 } 00063 00064 00065 void DTConfigAbstractHandler::getData( const edm::EventSetup& context, 00066 int cfgId, 00067 std::vector<std::string>& list) { 00068 return; 00069 } 00070 00071 00072 void DTConfigAbstractHandler::getData( const DTKeyedConfigListRcd& keyRecord, 00073 int cfgId, 00074 std::vector<std::string>& list) { 00075 return; 00076 } 00077 00078 00079 void DTConfigAbstractHandler::purge() { 00080 return; 00081 } 00082