CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Attributes
DTRangeT0Handler Class Reference

#include <DTRangeT0Handler.h>

Inheritance diagram for DTRangeT0Handler:
popcon::PopConSourceHandler< DTRangeT0 >

Public Member Functions

 DTRangeT0Handler (const edm::ParameterSet &ps)
 
void getNewObjects ()
 
std::string id () const
 
virtual ~DTRangeT0Handler ()
 
- Public Member Functions inherited from popcon::PopConSourceHandler< DTRangeT0 >
void convertFromOld ()
 
SummarydummySummary (typename OldContainer::value_type const &) const
 
void initialize (const cond::persistency::Session &dbSession, cond::TagInfo_t const &tagInfo, cond::LogDBEntry const &logDBEntry)
 
Ref lastPayload () const
 
cond::LogDBEntry const & logDBEntry () const
 
std::pair< Container const
*, std::string const > 
operator() (const cond::persistency::Session &session, cond::TagInfo_t const &tagInfo, cond::LogDBEntry 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< DTRangeT0 >
typedef std::vector< TripletContainer
 
typedef std::vector< std::pair
< DTRangeT0 *, cond::Time_t > > 
OldContainer
 
typedef PopConSourceHandler
< DTRangeT0
self
 
typedef cond::Summary Summary
 
typedef cond::Time_t Time_t
 
typedef DTRangeT0 value_type
 
- Protected Member Functions inherited from popcon::PopConSourceHandler< DTRangeT0 >
int add (value_type *payload, Summary *summary, Time_t time)
 
- Protected Attributes inherited from popcon::PopConSourceHandler< DTRangeT0 >
OldContainer m_to_transfer
 
std::string m_userTextLog
 

Detailed Description

Description:

Date:
2007/12/07 15:12:22
Revision:
1.2
Author
Paolo Ronchese INFN Padova

Definition at line 35 of file DTRangeT0Handler.h.

Constructor & Destructor Documentation

DTRangeT0Handler::DTRangeT0Handler ( const edm::ParameterSet ps)

Constructor

Definition at line 34 of file DTRangeT0Handler.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
std::string fileName
unsigned int runNumber
std::string dataTag
DTRangeT0Handler::~DTRangeT0Handler ( )
virtual

Destructor

Definition at line 43 of file DTRangeT0Handler.cc.

43  {
44 }

Member Function Documentation

void DTRangeT0Handler::getNewObjects ( )
virtual

Operations

Implements popcon::PopConSourceHandler< DTRangeT0 >.

Definition at line 49 of file DTRangeT0Handler.cc.

References gather_cfg::cout, dataTag, fileName, compare_using_db::ifile, prof2calltree::last, cond::TagInfo_t::lastInterval, popcon::PopConSourceHandler< DTRangeT0 >::m_to_transfer, runNumber, DTRangeT0::set(), ntuplemaker::status, and popcon::PopConSourceHandler< DTRangeT0 >::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  DTRangeT0* t0Range = new DTRangeT0( dataTag );
85 
86  int status = 0;
87  std::ifstream ifile( fileName.c_str() );
88  int whe;
89  int sta;
90  int sec;
91  int qua;
92  int t0min;
93  int t0max;
94  while ( ifile >> whe
95  >> sta
96  >> sec
97  >> qua
98  >> t0min
99  >> t0max ) {
100  status = t0Range->set( whe, sta, sec, qua, t0min, t0max );
101  std::cout << whe << " "
102  << sta << " "
103  << sec << " "
104  << qua << " "
105  << t0min << " "
106  << t0max << " -> ";
107  std::cout << "insert status: " << status << std::endl;
108  }
109 
110 /*
111  unsigned int runf = irun;
112  unsigned int runl = 0xffffffff;
113  popcon::IOVPair iop = { runf, runl };
114  std::cout << "APPEND NEW OBJECT: "
115  << runf << " " << runl << " " << t0Range << std::endl;
116  m_to_transfer->push_back( std::make_pair( t0Range, iop ) );
117 */
118 
119  //for each payload provide IOV information (say in this case we use since)
120  cond::Time_t snc = runNumber;
121  if ( runNumber > last )
122  m_to_transfer.push_back( std::make_pair( t0Range, snc ) );
123  else
124  std::cout << "More recent data already present - skipped" << std::endl;
125 
126  return;
127 
128 }
std::string fileName
cond::ValidityInterval lastInterval
Definition: Types.h:75
unsigned long long Time_t
Definition: Time.h:16
unsigned int runNumber
tuple cout
Definition: gather_cfg.py:121
int set(int wheelId, int stationId, int sectorId, int slId, int t0min, int t0max)
Definition: DTRangeT0.cc:138
tuple status
Definition: ntuplemaker.py:245
std::string dataTag
cond::TagInfo_t const & tagInfo() const
std::string DTRangeT0Handler::id ( ) const
virtual

Implements popcon::PopConSourceHandler< DTRangeT0 >.

Definition at line 131 of file DTRangeT0Handler.cc.

References dataTag.

131  {
132  return dataTag;
133 }
std::string dataTag

Member Data Documentation

std::string DTRangeT0Handler::dataTag
private

Definition at line 55 of file DTRangeT0Handler.h.

Referenced by getNewObjects(), and id().

std::string DTRangeT0Handler::fileName
private

Definition at line 56 of file DTRangeT0Handler.h.

Referenced by getNewObjects(), and readConfig.fileINI::read().

unsigned int DTRangeT0Handler::runNumber
private

Definition at line 57 of file DTRangeT0Handler.h.

Referenced by getNewObjects().