CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
DTTPGParametersHandler Class Reference

#include <DTTPGParametersHandler.h>

Inheritance diagram for DTTPGParametersHandler:
popcon::PopConSourceHandler< DTTPGParameters >

Public Member Functions

 DTTPGParametersHandler (const edm::ParameterSet &ps)
 
void getNewObjects () override
 
std::string id () const override
 
 ~DTTPGParametersHandler () override
 
- Public Member Functions inherited from popcon::PopConSourceHandler< DTTPGParameters >
void convertFromOld ()
 
SummarydummySummary (typename OldContainer::value_type const &) const
 
void initialize (const cond::persistency::Session &dbSession, cond::TagInfo_t const &tagInfo, cond::LogDBEntry_t const &logDBEntry)
 
Ref lastPayload () const
 
cond::LogDBEntry_t const & logDBEntry () const
 
std::pair< Container const *, std::string const > operator() (const cond::persistency::Session &session, cond::TagInfo_t const &tagInfo, cond::LogDBEntry_t const &logDBEntry) const
 
 PopConSourceHandler ()
 
Container const & returnData ()
 
void sort ()
 
cond::TagInfo_t const & tagInfo () const
 
std::string const & userTextLog () const
 
virtual ~PopConSourceHandler ()
 

Private Attributes

std::string dataTag
 
std::string fileName
 
unsigned int runNumber
 

Additional Inherited Members

- Public Types inherited from popcon::PopConSourceHandler< DTTPGParameters >
typedef std::vector< Triplet > Container
 
typedef std::vector< std::pair< DTTPGParameters *, cond::Time_t > > OldContainer
 
typedef PopConSourceHandler< DTTPGParametersself
 
typedef cond::Summary Summary
 
typedef cond::Time_t Time_t
 
typedef DTTPGParameters value_type
 
- Protected Member Functions inherited from popcon::PopConSourceHandler< DTTPGParameters >
int add (value_type *payload, Summary *summary, Time_t time)
 
cond::persistency::SessiondbSession () const
 
- Protected Attributes inherited from popcon::PopConSourceHandler< DTTPGParameters >
OldContainer m_to_transfer
 
std::string m_userTextLog
 

Detailed Description

Description:

Date
2009/01/27 12:07:41
Revision
1.1.2.1
Author
Paolo Ronchese INFN Padova

Definition at line 35 of file DTTPGParametersHandler.h.

Constructor & Destructor Documentation

DTTPGParametersHandler::DTTPGParametersHandler ( const edm::ParameterSet ps)

Constructor

Definition at line 34 of file DTTPGParametersHandler.cc.

34  :
35  dataTag( ps.getParameter<std::string> ( "tag" ) ),
36  fileName( ps.getParameter<std::string> ( "file" ) ),
37  runNumber( ps.getParameter<unsigned int> ( "run" ) ) {
38 }
T getParameter(std::string const &) const
DTTPGParametersHandler::~DTTPGParametersHandler ( )
override

Destructor

Definition at line 43 of file DTTPGParametersHandler.cc.

43  {
44 }

Member Function Documentation

void DTTPGParametersHandler::getNewObjects ( )
overridevirtual

Operations

Implements popcon::PopConSourceHandler< DTTPGParameters >.

Definition at line 49 of file DTTPGParametersHandler.cc.

References GetRecoTauVFromDQM_MC_cff::cl, gather_cfg::cout, dataTag, fileName, compare_using_db::ifile, plotBeamSpotDB::last, cond::TagInfo_t::lastInterval, popcon::PopConSourceHandler< DTTPGParameters >::m_to_transfer, DTTimeUnits::ns, runNumber, DTTPGParameters::set(), mps_update::status, and popcon::PopConSourceHandler< DTTPGParameters >::tagInfo().

49  {
50 
51  //to access the information on the tag inside the offline database:
52  cond::TagInfo const & ti = tagInfo();
53  unsigned int last = ti.lastInterval.first;
54 
55  //to access the information on last successful log entry for this tag:
56 // cond::LogDBEntry const & lde = logDBEntry();
57 
58  //to access the lastest payload (Ref is a smart pointer)
59 // Ref payload = lastPayload();
60 
61 /*
62  int irun = event.id().run();
63  int ievt = event.id().event();
64  std::cout << "================ "
65  << irun << " " << ievt << std::endl;
66 
67  std::map<std::string, popcon::PayloadIOV> mp = getOfflineInfo();
68  std::map<std::string, popcon::PayloadIOV>::iterator iter = mp.begin();
69  std::map<std::string, popcon::PayloadIOV>::iterator iend = mp.end();
70  std::cout << "list of all tags: " << std::endl;
71  while ( iter != iend ) {
72  std::cout << "Tag: " << iter->first
73  << " , last object valid since " << iter->second.last_since
74  << " to " << iter->second.last_till
75  << std::endl;
76  iter++;
77  }
78 
79  std::cout << "look for tag " << dataTag << std::endl;
80  std::map<std::string, popcon::PayloadIOV>::iterator itag =
81  mp.find( dataTag );
82 */
83 
84  DTTPGParameters* tSync = new DTTPGParameters( dataTag );
85 
86  int status = 0;
87  std::ifstream ifile( fileName.c_str() );
88 // int cx = 32;
89 // ifile >> cx;
90 // tSync->setClock( cx );
91  int whe;
92  int sta;
93  int sec;
94  int cl;
95  float ph;
96  while ( ifile >> whe
97  >> sta
98  >> sec
99  >> cl
100  >> ph ) {
101  status = tSync->set( whe, sta, sec, cl, ph,
102  DTTimeUnits::ns );
103  std::cout << whe << " "
104  << sta << " "
105  << sec << " "
106  << cl << " "
107  << ph << " -> ";
108  std::cout << "insert status: " << status << std::endl;
109  }
110 
111 /*
112  unsigned int runf = irun;
113  unsigned int runl = 0xffffffff;
114  popcon::IOVPair iop = { runf, runl };
115  std::cout << "APPEND NEW OBJECT: "
116  << runf << " " << runl << " " << tSync << std::endl;
117  m_to_transfer->push_back( std::make_pair( tSync, iop ) );
118 */
119 
120  //for each payload provide IOV information (say in this case we use since)
121  cond::Time_t snc = runNumber;
122  if ( runNumber > last )
123  m_to_transfer.push_back( std::make_pair( tSync, snc ) );
124  else {
125  std::cout << "More recent data already present - skipped" << std::endl;
126  delete tSync;
127  }
128 
129  return;
130 
131 }
int set(int wheelId, int stationId, int sectorId, int nc, float ph, DTTimeUnits::type unit)
cond::ValidityInterval lastInterval
Definition: Types.h:76
unsigned long long Time_t
Definition: Time.h:16
std::string DTTPGParametersHandler::id ( ) const
overridevirtual

Implements popcon::PopConSourceHandler< DTTPGParameters >.

Definition at line 134 of file DTTPGParametersHandler.cc.

References dataTag.

134  {
135  return dataTag;
136 }

Member Data Documentation

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(), and readConfig.fileINI::read().

unsigned int DTTPGParametersHandler::runNumber
private