00001 //<<<<<< INCLUDES >>>>>> 00002 00003 #include "VisFramework/VisConfigService/interface/VisConfigurationService.h" 00004 00005 //<<<<<< PRIVATE DEFINES >>>>>> 00006 //<<<<<< PRIVATE CONSTANTS >>>>>> 00007 //<<<<<< PRIVATE TYPES >>>>>> 00008 //<<<<<< PRIVATE VARIABLE DEFINITIONS >>>>>> 00009 00010 edm::ParameterSet* VisConfigurationService::m_pSet = 0; 00011 00012 //<<<<<< PUBLIC VARIABLE DEFINITIONS >>>>>> 00013 //<<<<<< CLASS STRUCTURE INITIALIZATION >>>>>> 00014 //<<<<<< PRIVATE FUNCTION DEFINITIONS >>>>>> 00015 //<<<<<< PUBLIC FUNCTION DEFINITIONS >>>>>> 00016 //<<<<<< MEMBER FUNCTION DEFINITIONS >>>>>> 00017 00018 VisConfigurationService::VisConfigurationService (const edm::ParameterSet& pSet) 00019 { 00020 if(!m_pSet) m_pSet = new edm::ParameterSet(pSet); 00021 } 00022 00023 VisConfigurationService::~VisConfigurationService () 00024 { } 00025 00026 const edm::ParameterSet* 00027 VisConfigurationService::pSet () 00028 { return m_pSet; }