CMS 3D CMS Logo

Public Member Functions | Private Attributes

CastorChannelQualityHandler Class Reference

#include <CastorChannelQualityHandler.h>

Inheritance diagram for CastorChannelQualityHandler:
popcon::PopConSourceHandler< CastorChannelQuality >

List of all members.

Public Member Functions

 CastorChannelQualityHandler (edm::ParameterSet const &)
void getNewObjects ()
std::string id () const
void initObject (CastorChannelQuality *)
 ~CastorChannelQualityHandler ()

Private Attributes

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

Detailed Description

Definition at line 25 of file CastorChannelQualityHandler.h.


Constructor & Destructor Documentation

CastorChannelQualityHandler::~CastorChannelQualityHandler ( )

Definition at line 12 of file CastorChannelQualityHandler.cc.

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

Definition at line 6 of file CastorChannelQualityHandler.cc.

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

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

Member Function Documentation

void CastorChannelQualityHandler::getNewObjects ( ) [virtual]

Implements popcon::PopConSourceHandler< CastorChannelQuality >.

Definition at line 16 of file CastorChannelQualityHandler.cc.

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

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

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

Implements popcon::PopConSourceHandler< CastorChannelQuality >.

Definition at line 29 of file CastorChannelQualityHandler.h.

References m_name.

{ return m_name;}
void CastorChannelQualityHandler::initObject ( CastorChannelQuality fObject)

Definition at line 45 of file CastorChannelQualityHandler.cc.

References myDBObject.

Referenced by CastorChannelQualityPopConAnalyzer::endJob().

{
  myDBObject = fObject;
}

Member Data Documentation

Definition at line 37 of file CastorChannelQualityHandler.h.

std::string CastorChannelQualityHandler::m_name [private]

Definition at line 39 of file CastorChannelQualityHandler.h.

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

Definition at line 38 of file CastorChannelQualityHandler.h.

Referenced by getNewObjects(), and initObject().

Definition at line 36 of file CastorChannelQualityHandler.h.

Referenced by CastorChannelQualityHandler(), and getNewObjects().