#include <DTTPGParametersHandler.h>
Public Member Functions | |
DTTPGParametersHandler (const edm::ParameterSet &ps) | |
void | getNewObjects () |
std::string | id () const |
virtual | ~DTTPGParametersHandler () |
Private Attributes | |
std::string | dataTag |
std::string | fileName |
unsigned int | runNumber |
DTTPGParametersHandler::DTTPGParametersHandler | ( | const edm::ParameterSet & | ps | ) |
Constructor
Definition at line 34 of file DTTPGParametersHandler.cc.
: dataTag( ps.getParameter<std::string> ( "tag" ) ), fileName( ps.getParameter<std::string> ( "file" ) ), runNumber( ps.getParameter<unsigned int> ( "run" ) ) { }
DTTPGParametersHandler::~DTTPGParametersHandler | ( | ) | [virtual] |
void DTTPGParametersHandler::getNewObjects | ( | ) | [virtual] |
Operations
Implements popcon::PopConSourceHandler< DTTPGParameters >.
Definition at line 49 of file DTTPGParametersHandler.cc.
References gather_cfg::cout, dataTag, ExpressReco_HICollisions_FallBack::DTTPGParameters, fileName, indexGen::ifile, prof2calltree::last, cond::TagInfo::lastInterval, popcon::PopConSourceHandler< DTTPGParameters >::m_to_transfer, DTTimeUnits::ns, runNumber, DTTPGParameters::set(), ntuplemaker::status, and popcon::PopConSourceHandler< DTTPGParameters >::tagInfo().
{ //to access the information on the tag inside the offline database: cond::TagInfo const & ti = tagInfo(); unsigned int last = ti.lastInterval.first; //to access the information on last successful log entry for this tag: // cond::LogDBEntry const & lde = logDBEntry(); //to access the lastest payload (Ref is a smart pointer) // Ref payload = lastPayload(); /* int irun = event.id().run(); int ievt = event.id().event(); std::cout << "================ " << irun << " " << ievt << std::endl; std::map<std::string, popcon::PayloadIOV> mp = getOfflineInfo(); std::map<std::string, popcon::PayloadIOV>::iterator iter = mp.begin(); std::map<std::string, popcon::PayloadIOV>::iterator iend = mp.end(); std::cout << "list of all tags: " << std::endl; while ( iter != iend ) { std::cout << "Tag: " << iter->first << " , last object valid since " << iter->second.last_since << " to " << iter->second.last_till << std::endl; iter++; } std::cout << "look for tag " << dataTag << std::endl; std::map<std::string, popcon::PayloadIOV>::iterator itag = mp.find( dataTag ); */ DTTPGParameters* tSync = new DTTPGParameters( dataTag ); int status = 0; std::ifstream ifile( fileName.c_str() ); // int cx = 32; // ifile >> cx; // tSync->setClock( cx ); int whe; int sta; int sec; int cl; float ph; while ( ifile >> whe >> sta >> sec >> cl >> ph ) { status = tSync->set( whe, sta, sec, cl, ph, DTTimeUnits::ns ); std::cout << whe << " " << sta << " " << sec << " " << cl << " " << ph << " -> "; std::cout << "insert status: " << status << std::endl; } /* unsigned int runf = irun; unsigned int runl = 0xffffffff; popcon::IOVPair iop = { runf, runl }; std::cout << "APPEND NEW OBJECT: " << runf << " " << runl << " " << tSync << std::endl; m_to_transfer->push_back( std::make_pair( tSync, iop ) ); */ //for each payload provide IOV information (say in this case we use since) cond::Time_t snc = runNumber; if ( runNumber > last ) m_to_transfer.push_back( std::make_pair( tSync, snc ) ); else std::cout << "More recent data already present - skipped" << std::endl; return; }
std::string DTTPGParametersHandler::id | ( | void | ) | const [virtual] |
Implements popcon::PopConSourceHandler< DTTPGParameters >.
Definition at line 132 of file DTTPGParametersHandler.cc.
References dataTag.
{ return dataTag; }
std::string DTTPGParametersHandler::dataTag [private] |
Definition at line 55 of file DTTPGParametersHandler.h.
Referenced by getNewObjects(), and id().
std::string DTTPGParametersHandler::fileName [private] |
Definition at line 56 of file DTTPGParametersHandler.h.
Referenced by getNewObjects().
unsigned int DTTPGParametersHandler::runNumber [private] |
Definition at line 57 of file DTTPGParametersHandler.h.
Referenced by getNewObjects().