CMS 3D CMS Logo

CTPPSIncludeAlignments.cc
Go to the documentation of this file.
1 /****************************************************************************
2 *
3 * This is a part of TOTEM offline software.
4 * Authors:
5 * Jan Kaspar (jan.kaspar@gmail.com)
6 *
7 ****************************************************************************/
8 
16 
21 
22 #include <vector>
23 #include <string>
24 #include <map>
25 #include <set>
26 
27 
32 {
33  public:
35  ~CTPPSIncludeAlignments() override;
36 
37  std::unique_ptr<RPAlignmentCorrectionsData> produceMeasured(const RPMeasuredAlignmentRecord &);
38  std::unique_ptr<RPAlignmentCorrectionsData> produceReal(const RPRealAlignmentRecord &);
39  std::unique_ptr<RPAlignmentCorrectionsData> produceMisaligned(const RPMisalignedAlignmentRecord &);
40 
41  protected:
42  unsigned int verbosity;
45 
47 
49  RPAlignmentCorrectionsDataSequence Merge(const std::vector<RPAlignmentCorrectionsDataSequence>&) const;
50 
52  void PrepareSequence(const std::string &label, RPAlignmentCorrectionsDataSequence &seq, const std::vector<std::string> &files) const;
53 };
54 
55 //----------------------------------------------------------------------------------------------------
56 
57 using namespace std;
58 using namespace edm;
59 
60 //----------------------------------------------------------------------------------------------------
61 //----------------------------------------------------------------------------------------------------
62 
64  verbosity(pSet.getUntrackedParameter<unsigned int>("verbosity", 1))
65 {
66  PrepareSequence("Measured", acsMeasured, pSet.getParameter< vector<string> >("MeasuredFiles"));
67  PrepareSequence("Real", acsReal, pSet.getParameter< vector<string> >("RealFiles"));
68  PrepareSequence("Misaligned", acsMisaligned, pSet.getParameter< vector<string> >("MisalignedFiles"));
69 
73 
74  findingRecord<RPMeasuredAlignmentRecord>();
75  findingRecord<RPRealAlignmentRecord>();
76  findingRecord<RPMisalignedAlignmentRecord>();
77 }
78 
79 //----------------------------------------------------------------------------------------------------
80 
82 {
83 }
84 
85 //----------------------------------------------------------------------------------------------------
86 
87 RPAlignmentCorrectionsDataSequence CTPPSIncludeAlignments::Merge(const vector<RPAlignmentCorrectionsDataSequence>& files) const
88 {
89  // find interval boundaries
90  map< TimeValue_t, vector< pair<bool, const RPAlignmentCorrectionsData*> > > bounds;
91 
92  for (const auto & file : files)
93  {
94  for (RPAlignmentCorrectionsDataSequence::const_iterator iit = file.begin(); iit != file.end(); ++iit)
95  {
96  const TimeValidityInterval &tvi = iit->first;
97  const RPAlignmentCorrectionsData *corr = & iit->second;
98 
99  bounds[tvi.first].emplace_back( pair<bool, const RPAlignmentCorrectionsData*>(true, corr) );
100 
101  TimeValue_t delta = (tvi.last != TimeValidityInterval::EndOfTime()) ? (1ULL << 32) : 0; // input resolution is 1s
102  bounds[tvi.last + delta].emplace_back( pair<bool, const RPAlignmentCorrectionsData*>(false, corr) );
103  }
104  }
105 
106  // build correction sums per interval
107  set<const RPAlignmentCorrectionsData*> accumulator;
109  // bool gap_found = false;
110  for (map< TimeValue_t, vector< pair<bool, const RPAlignmentCorrectionsData*> > >::const_iterator tit = bounds.begin(); tit != bounds.end(); ++tit)
111  {
112  for (const auto & cit : tit->second)
113  {
114  bool add = cit.first;
115  const RPAlignmentCorrectionsData *corr = cit.second;
116 
117  if (add)
118  accumulator.insert(corr);
119  else
120  accumulator.erase(corr);
121  }
122 
123  map< TimeValue_t, vector< pair<bool, const RPAlignmentCorrectionsData*> > >::const_iterator tit_next = tit;
124  tit_next++;
125  if (tit_next == bounds.end())
126  break;
127 
128  TimeValue_t delta = (tit_next->first != TimeValidityInterval::EndOfTime()) ? 1 : 0; // minimal step
129  TimeValidityInterval tvi(tit->first, tit_next->first - delta);
130 
131  if (verbosity)
132  {
133  printf("\tfirst=%10s, last=%10s: alignment blocks=%li\n",
136  accumulator.size()
137  );
138  }
139 
140  for (auto sit : accumulator)
141  result[tvi].addCorrections(*sit);
142  }
143 
144  return result;
145 }
146 
147 //----------------------------------------------------------------------------------------------------
148 
149 void CTPPSIncludeAlignments::PrepareSequence(const string &label, RPAlignmentCorrectionsDataSequence &seq, const vector<string> &files) const
150 {
151  if (verbosity)
152  printf(">> CTPPSIncludeAlignments::PrepareSequence(%s)\n", label.c_str());
153 
154  vector<RPAlignmentCorrectionsDataSequence> sequences;
155  for (const auto & file : files)
156  sequences.emplace_back(RPAlignmentCorrectionsDataSequence(file));
157 
158  seq = Merge(sequences);
159 }
160 
161 //----------------------------------------------------------------------------------------------------
162 
163 std::unique_ptr<RPAlignmentCorrectionsData> CTPPSIncludeAlignments::produceMeasured(const RPMeasuredAlignmentRecord &iRecord)
164 {
165  return std::make_unique<RPAlignmentCorrectionsData>(acMeasured);
166 }
167 
168 //----------------------------------------------------------------------------------------------------
169 
170 std::unique_ptr<RPAlignmentCorrectionsData> CTPPSIncludeAlignments::produceReal(const RPRealAlignmentRecord &iRecord)
171 {
172  return std::make_unique<RPAlignmentCorrectionsData>(acReal);
173 }
174 
175 //----------------------------------------------------------------------------------------------------
176 
177 std::unique_ptr<RPAlignmentCorrectionsData> CTPPSIncludeAlignments::produceMisaligned(const RPMisalignedAlignmentRecord &iRecord)
178 {
179  return std::make_unique<RPAlignmentCorrectionsData>(acMisaligned);
180 }
181 
182 //----------------------------------------------------------------------------------------------------
183 
185  const IOVSyncValue& iosv, ValidityInterval& valInt)
186 {
187  if (verbosity)
188  {
189  LogVerbatim("CTPPSIncludeAlignments")
190  << ">> CTPPSIncludeAlignments::setIntervalFor(" << key.name() << ")";
191 
192  time_t unixTime = iosv.time().unixTime();
193  char timeStr[50];
194  strftime(timeStr, 50, "%F %T", localtime(&unixTime));
195 
196  LogVerbatim("CTPPSIncludeAlignments")
197  << " run=" << iosv.eventID().run() << ", event=" << iosv.eventID().event() << ", UNIX timestamp=" << unixTime << " (" << timeStr << ")";
198  }
199 
200  // determine what sequence and corrections should be used
201  RPAlignmentCorrectionsDataSequence *seq = nullptr;
202  RPAlignmentCorrectionsData *corr = nullptr;
203 
204  if (strcmp(key.name(), "RPMeasuredAlignmentRecord") == 0)
205  {
206  seq = &acsMeasured;
207  corr = &acMeasured;
208  }
209 
210  if (strcmp(key.name(), "RPRealAlignmentRecord") == 0)
211  {
212  seq = &acsReal;
213  corr = &acReal;
214  }
215 
216  if (strcmp(key.name(), "RPMisalignedAlignmentRecord") == 0)
217  {
218  seq = &acsMisaligned;
219  corr = &acMisaligned;
220  }
221 
222  if (seq == nullptr)
223  throw cms::Exception("CTPPSIncludeAlignments::setIntervalFor") << "Unknown record " << key.name();
224 
225  // find the corresponding time interval
226  bool next_exists = false;
227  TimeValue_t t = iosv.time().value(), next_start = TimeValidityInterval::EndOfTime();
228 
229  for (auto & it : *seq)
230  {
231  if (it.first.first <= t && it.first.last >= t)
232  {
233  valInt = ValidityInterval(IOVSyncValue(Timestamp(it.first.first)), IOVSyncValue(Timestamp(it.first.last)));
234  *corr = it.second;
235 
236  if (verbosity)
237  {
238  LogVerbatim("CTPPSIncludeAlignments")
239  << " setting validity interval [" << TimeValidityInterval::ValueToUNIXString(valInt.first().time().value())
240  << ", " << TimeValidityInterval::ValueToUNIXString(valInt.last().time().value()) << "]";
241  }
242 
243  return;
244  }
245 
246  if (t <= it.first.first)
247  {
248  next_exists = true;
249  next_start = min(next_start, it.first.first);
250  }
251  }
252 
253  // no interval found, set empty corrections
254  *corr = RPAlignmentCorrectionsData();
255 
256  if (!next_exists)
257  valInt = ValidityInterval(iosv, iosv.endOfTime());
258  else
259  valInt = ValidityInterval(iosv, IOVSyncValue(Timestamp(next_start - 1)));
260 
261  if (verbosity)
262  {
263  LogVerbatim("CTPPSIncludeAlignments")
264  << " setting validity interval [" << TimeValidityInterval::ValueToUNIXString(valInt.first().time().value())
265  << ", " << TimeValidityInterval::ValueToUNIXString(valInt.last().time().value()) << "]";
266  }
267 }
268 
269 //----------------------------------------------------------------------------------------------------
270 
RunNumber_t run() const
Definition: EventID.h:39
dbl * delta
Definition: mlp_gen.cc:36
T getParameter(std::string const &) const
EventNumber_t event() const
Definition: EventID.h:41
RPAlignmentCorrectionsDataSequence Merge(const std::vector< RPAlignmentCorrectionsDataSequence > &) const
merges an array of sequences to one
RPAlignmentCorrectionsDataSequence acsMeasured
Time sequence of alignment corrections.
RPAlignmentCorrectionsDataSequence acsMisaligned
const EventID & eventID() const
Definition: IOVSyncValue.h:42
Validity interval in timestamps.
RPAlignmentCorrectionsData acMisaligned
static const IOVSyncValue & endOfTime()
Definition: IOVSyncValue.cc:97
RPAlignmentCorrectionsDataSequence acsReal
std::pair< Time_t, Time_t > ValidityInterval
Definition: Time.h:19
std::unique_ptr< RPAlignmentCorrectionsData > produceReal(const RPRealAlignmentRecord &)
void setWhatProduced(T *iThis, const es::Label &iLabel=es::Label())
Definition: ESProducer.h:115
const IOVSyncValue & last() const
std::unique_ptr< RPAlignmentCorrectionsData > produceMeasured(const RPMeasuredAlignmentRecord &)
RPAlignmentCorrectionsData acMeasured
CTPPSIncludeAlignments(const edm::ParameterSet &p)
static std::string ValueToUNIXString(const edm::TimeValue_t &v)
unsigned int unixTime() const
Time in seconds since January 1, 1970.
Definition: Timestamp.h:46
T min(T a, T b)
Definition: MathUtil.h:58
void PrepareSequence(const std::string &label, RPAlignmentCorrectionsDataSequence &seq, const std::vector< std::string > &files) const
builds a sequence of corrections from provided sources and runs a few checks
unsigned long long TimeValue_t
Definition: Timestamp.h:28
JetCorrectorParameters corr
Definition: classes.h:5
RPAlignmentCorrectionsData acReal
edm::TimeValue_t first
the boundaries (included) of the interval expressed as UNIX timestamps
#define DEFINE_FWK_EVENTSETUP_SOURCE(type)
Definition: SourceFactory.h:92
void add(std::map< std::string, TH1 * > &h, TH1 *hist)
Container for RP alignment corrections. The corrections are stored on two levels - RP and sensor...
HLT enums.
void setIntervalFor(const edm::eventsetup::EventSetupRecordKey &, const edm::IOVSyncValue &, edm::ValidityInterval &) override
const Timestamp & time() const
Definition: IOVSyncValue.h:44
const IOVSyncValue & first() const
static const edm::TimeValue_t EndOfTime()
TimeValue_t value() const
Definition: Timestamp.h:56
std::unique_ptr< RPAlignmentCorrectionsData > produceMisaligned(const RPMisalignedAlignmentRecord &)