CMS 3D CMS Logo

Public Member Functions | Private Attributes

HcalDcsMapHandler Class Reference

#include <HcalDcsMapHandler.h>

Inheritance diagram for HcalDcsMapHandler:
popcon::PopConSourceHandler< HcalDcsMap >

List of all members.

Public Member Functions

void getNewObjects ()
 HcalDcsMapHandler (edm::ParameterSet const &)
std::string id () const
void initObject (HcalDcsMap *)
 ~HcalDcsMapHandler ()

Private Attributes

edm::FileInPath fFile
std::string m_name
HcalDcsMapmyDBObject
unsigned int sinceTime

Detailed Description

Definition at line 25 of file HcalDcsMapHandler.h.


Constructor & Destructor Documentation

HcalDcsMapHandler::~HcalDcsMapHandler ( )

Definition at line 12 of file HcalDcsMapHandler.cc.

{
}
HcalDcsMapHandler::HcalDcsMapHandler ( edm::ParameterSet const &  ps)

Definition at line 6 of file HcalDcsMapHandler.cc.

References edm::ParameterSet::getUntrackedParameter(), m_name, and sinceTime.

{
  m_name = ps.getUntrackedParameter<std::string>("name","HcalDcsMapHandler");
  sinceTime = ps.getUntrackedParameter<unsigned>("IOVRun",0);
}

Member Function Documentation

void HcalDcsMapHandler::getNewObjects ( ) [virtual]

Implements popcon::PopConSourceHandler< HcalDcsMap >.

Definition at line 16 of file HcalDcsMapHandler.cc.

References gather_cfg::cout, Exception, cond::TagInfo::lastInterval, m_name, popcon::PopConSourceHandler< HcalDcsMap >::m_to_transfer, myDBObject, cond::TagInfo::name, sinceTime, cond::TagInfo::size, and popcon::PopConSourceHandler< HcalDcsMap >::tagInfo().

{
  //  edm::LogInfo   ("HcalDcsMapHandler") 
  std::cout
    << "------- " << m_name 
    << " - > getNewObjects\n" << 
    //check whats already inside of database
    "got offlineInfo"<<
    tagInfo().name << ", size " << tagInfo().size 
                                          << ", last object valid since " 
                                          << tagInfo().lastInterval.first << std::endl;  

  if (!myDBObject) 
    throw cms::Exception("Empty DB object") << m_name 
                                            << " has received empty object - nothing to write to DB" 
                                            << std::endl;

  //  IOV information
  cond::Time_t myTime = sinceTime;

  std::cout << "Using IOV run " << sinceTime << std::endl;

  // prepare for transfer:
  m_to_transfer.push_back(std::make_pair(myDBObject,myTime));

  edm::LogInfo("HcalDcsMapHandler") << "------- " << m_name << " - > getNewObjects" << std::endl;

}
std::string HcalDcsMapHandler::id ( void  ) const [inline, virtual]

Implements popcon::PopConSourceHandler< HcalDcsMap >.

Definition at line 29 of file HcalDcsMapHandler.h.

References m_name.

{ return m_name;}
void HcalDcsMapHandler::initObject ( HcalDcsMap fObject)

Definition at line 45 of file HcalDcsMapHandler.cc.

References myDBObject.

Referenced by HcalDcsMapPopConAnalyzer::endJob().

{
  myDBObject = fObject;
}

Member Data Documentation

Definition at line 37 of file HcalDcsMapHandler.h.

std::string HcalDcsMapHandler::m_name [private]

Definition at line 39 of file HcalDcsMapHandler.h.

Referenced by getNewObjects(), HcalDcsMapHandler(), and id().

Definition at line 38 of file HcalDcsMapHandler.h.

Referenced by getNewObjects(), and initObject().

unsigned int HcalDcsMapHandler::sinceTime [private]

Definition at line 36 of file HcalDcsMapHandler.h.

Referenced by getNewObjects(), and HcalDcsMapHandler().