CMS 3D CMS Logo

DTRangeT0Handler.cc
Go to the documentation of this file.
1 /*
2  * See header file for a description of this class.
3  *
4  * $Date: 2007/12/07 15:13:47 $
5  * $Revision: 1.2 $
6  * \author Paolo Ronchese INFN Padova
7  *
8  */
9 
10 //-----------------------
11 // This Class' Header --
12 //-----------------------
14 
15 //-------------------------------
16 // Collaborating Class Headers --
17 //-------------------------------
19 
20 //---------------
21 // C++ Headers --
22 //---------------
23 #include <iostream>
24 #include <fstream>
25 
26 //-------------------
27 // Initializations --
28 //-------------------
29 
30 //----------------
31 // Constructors --
32 //----------------
34  : dataTag(ps.getParameter<std::string>("tag")),
35  fileName(ps.getParameter<std::string>("file")),
36  runNumber(ps.getParameter<unsigned int>("run")) {}
37 
38 //--------------
39 // Destructor --
40 //--------------
42 
43 //--------------
44 // Operations --
45 //--------------
47  //to access the information on the tag inside the offline database:
48  cond::TagInfo_t const& ti = tagInfo();
50 
51  //to access the information on last successful log entry for this tag:
52  // cond::LogDBEntry const & lde = logDBEntry();
53 
54  //to access the lastest payload (Ref is a smart pointer)
55  // Ref payload = lastPayload();
56 
57  /*
58  int irun = event.id().run();
59  int ievt = event.id().event();
60  std::cout << "================ "
61  << irun << " " << ievt << std::endl;
62 
63  std::map<std::string, popcon::PayloadIOV> mp = getOfflineInfo();
64  std::map<std::string, popcon::PayloadIOV>::iterator iter = mp.begin();
65  std::map<std::string, popcon::PayloadIOV>::iterator iend = mp.end();
66  std::cout << "list of all tags: " << std::endl;
67  while ( iter != iend ) {
68  std::cout << "Tag: " << iter->first
69  << " , last object valid since " << iter->second.last_since
70  << " to " << iter->second.last_till
71  << std::endl;
72  iter++;
73  }
74 
75  std::cout << "look for tag " << dataTag << std::endl;
76  std::map<std::string, popcon::PayloadIOV>::iterator itag =
77  mp.find( dataTag );
78 */
79 
80  DTRangeT0* t0Range = new DTRangeT0(dataTag);
81 
82  int status = 0;
83  std::ifstream ifile(fileName.c_str());
84  int whe;
85  int sta;
86  int sec;
87  int qua;
88  int t0min;
89  int t0max;
90  while (ifile >> whe >> sta >> sec >> qua >> t0min >> t0max) {
91  status = t0Range->set(whe, sta, sec, qua, t0min, t0max);
92  std::cout << whe << " " << sta << " " << sec << " " << qua << " " << t0min << " " << t0max << " -> ";
93  std::cout << "insert status: " << status << std::endl;
94  }
95 
96  /*
97  unsigned int runf = irun;
98  unsigned int runl = 0xffffffff;
99  popcon::IOVPair iop = { runf, runl };
100  std::cout << "APPEND NEW OBJECT: "
101  << runf << " " << runl << " " << t0Range << std::endl;
102  m_to_transfer->push_back( std::make_pair( t0Range, iop ) );
103 */
104 
105  //for each payload provide IOV information (say in this case we use since)
106  cond::Time_t snc = runNumber;
107  if (runNumber > last)
108  m_to_transfer.push_back(std::make_pair(t0Range, snc));
109  else {
110  std::cout << "More recent data already present - skipped" << std::endl;
111  delete t0Range;
112  }
113 
114  return;
115 }
116 
Iov_t lastInterval
Definition: Types.h:73
std::string fileName
Time_t since
Definition: Types.h:53
DTRangeT0Handler(const edm::ParameterSet &ps)
cond::TagInfo_t const & tagInfo() const
unsigned long long Time_t
Definition: Time.h:14
std::vector< std::pair< DTRangeT0 *, Time_t > > m_to_transfer
~DTRangeT0Handler() override
std::string id() const override
void getNewObjects() override
unsigned int runNumber
int set(int wheelId, int stationId, int sectorId, int slId, int t0min, int t0max)
Definition: DTRangeT0.cc:89
std::string dataTag