CMS 3D CMS Logo

Public Member Functions | Private Attributes

CastorGainWidthsHandler Class Reference

#include <CastorGainWidthsHandler.h>

Inheritance diagram for CastorGainWidthsHandler:
popcon::PopConSourceHandler< CastorGainWidths >

List of all members.

Public Member Functions

 CastorGainWidthsHandler (edm::ParameterSet const &)
void getNewObjects ()
std::string id () const
void initObject (CastorGainWidths *)
 ~CastorGainWidthsHandler ()

Private Attributes

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

Detailed Description

Definition at line 25 of file CastorGainWidthsHandler.h.


Constructor & Destructor Documentation

CastorGainWidthsHandler::~CastorGainWidthsHandler ( )

Definition at line 12 of file CastorGainWidthsHandler.cc.

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

Definition at line 6 of file CastorGainWidthsHandler.cc.

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

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

Member Function Documentation

void CastorGainWidthsHandler::getNewObjects ( ) [virtual]

Implements popcon::PopConSourceHandler< CastorGainWidths >.

Definition at line 16 of file CastorGainWidthsHandler.cc.

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

{
  //  edm::LogInfo   ("CastorGainWidthsHandler") 
  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("CastorGainWidthsHandler") << "------- " << m_name << " - > getNewObjects" << std::endl;

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

Implements popcon::PopConSourceHandler< CastorGainWidths >.

Definition at line 29 of file CastorGainWidthsHandler.h.

References m_name.

{ return m_name;}
void CastorGainWidthsHandler::initObject ( CastorGainWidths fObject)

Definition at line 45 of file CastorGainWidthsHandler.cc.

References myDBObject.

Referenced by CastorGainWidthsPopConAnalyzer::endJob().

{
  myDBObject = fObject;
}

Member Data Documentation

Definition at line 37 of file CastorGainWidthsHandler.h.

std::string CastorGainWidthsHandler::m_name [private]

Definition at line 39 of file CastorGainWidthsHandler.h.

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

Definition at line 38 of file CastorGainWidthsHandler.h.

Referenced by getNewObjects(), and initObject().

unsigned int CastorGainWidthsHandler::sinceTime [private]

Definition at line 36 of file CastorGainWidthsHandler.h.

Referenced by CastorGainWidthsHandler(), and getNewObjects().