CMS 3D CMS Logo

ActivityRegistry.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: ServiceRegistry
4 // Class : ActivityRegistry
5 //
6 // Implementation:
7 // <Notes on implementation>
8 //
9 // Original Author: Chris Jones
10 // Created: Tue Sep 6 10:26:49 EDT 2005
11 //
12 
13 // system include files
14 #include <algorithm>
15 
16 // user include files
20 
21 //
22 // constants, enums and typedefs
23 //
24 
25 //
26 // static data member definitions
27 //
28 
29 //
30 // constructors and destructor
31 //
32 //ActivityRegistry::ActivityRegistry() {
33 //}
34 
35 // ActivityRegistry::ActivityRegistry(ActivityRegistry const& rhs) {
36 // // do actual copying here;
37 // }
38 
39 //ActivityRegistry::~ActivityRegistry() {
40 //}
41 
42 //
43 // assignment operators
44 //
45 // ActivityRegistry const& ActivityRegistry::operator=(ActivityRegistry const& rhs) {
46 // //An exception safe implementation is
47 // ActivityRegistry temp(rhs);
48 // swap(rhs);
49 //
50 // return *this;
51 // }
52 
53 //
54 // member functions
55 //
56 namespace edm {
57  namespace {
58  template <typename T>
59  inline void copySlotsToFrom(T& iTo, T& iFrom) {
60  for (auto& slot : iFrom.slots()) {
61  iTo.connect(slot);
62  }
63  }
64 
65  template <typename T>
66  inline void copySlotsToFromReverse(T& iTo, T& iFrom) {
67  // This handles service slots that are supposed to be in reverse
68  // order of construction. Copying new ones in is a little
69  // tricky. Here is an example of what follows
70  // slots in iTo before 4 3 2 1 and copy in slots in iFrom 8 7 6 5.
71  // reverse iFrom 5 6 7 8
72  // then do the copy to front 8 7 6 5 4 3 2 1
73 
74  auto slotsFrom = iFrom.slots();
75 
76  std::reverse(slotsFrom.begin(), slotsFrom.end());
77 
78  for (auto& slotFrom : slotsFrom) {
79  iTo.connect_front(slotFrom);
80  }
81  }
82  } // namespace
83 
84  namespace signalslot {
86  throw cms::Exception("ConnectedToObsoleteServiceSignal")
87  << "A Service has connected to an obsolete ActivityRegistry signal.";
88  }
89  } // namespace signalslot
90 
94  preEndJobSignal_.connect(std::cref(iOther.preEndJobSignal_));
95  postEndJobSignal_.connect(std::cref(iOther.postEndJobSignal_));
96 
97  jobFailureSignal_.connect(std::cref(iOther.jobFailureSignal_));
98 
99  preSourceSignal_.connect(std::cref(iOther.preSourceSignal_));
100  postSourceSignal_.connect(std::cref(iOther.postSourceSignal_));
101 
104 
107 
108  preOpenFileSignal_.connect(std::cref(iOther.preOpenFileSignal_));
110 
113 
116 
120  }
121 
123  preBeginJobSignal_.connect(std::cref(iOther.preBeginJobSignal_));
124 
127 
130 
133 
136 
139 
142 
145 
148 
151 
154 
157 
160 
161  preEventSignal_.connect(std::cref(iOther.preEventSignal_));
162  postEventSignal_.connect(std::cref(iOther.postEventSignal_));
163 
166 
167  //preProcessEventSignal_.connect(std::cref(iOther.preProcessEventSignal_));
168  //postProcessEventSignal_.connect(std::cref(iOther.postProcessEventSignal_));
169 
170  //preBeginRunSignal_.connect(std::cref(iOther.preBeginRunSignal_));
171  //postBeginRunSignal_.connect(std::cref(iOther.postBeginRunSignal_));
172 
173  //preEndRunSignal_.connect(std::cref(iOther.preEndRunSignal_));
174  //postEndRunSignal_.connect(std::cref(iOther.postEndRunSignal_));
175 
176  //preBeginLumiSignal_.connect(std::cref(iOther.preBeginLumiSignal_));
177  //postBeginLumiSignal_.connect(std::cref(iOther.postBeginLumiSignal_));
178 
179  //preEndLumiSignal_.connect(std::cref(iOther.preEndLumiSignal_));
180  //postEndLumiSignal_.connect(std::cref(iOther.postEndLumiSignal_));
181 
182  //preProcessPathSignal_.connect(std::cref(iOther.preProcessPathSignal_));
183  //postProcessPathSignal_.connect(std::cref(iOther.postProcessPathSignal_));
184 
185  //prePathBeginRunSignal_.connect(std::cref(iOther.prePathBeginRunSignal_));
186  //postPathBeginRunSignal_.connect(std::cref(iOther.postPathBeginRunSignal_));
187 
188  //prePathEndRunSignal_.connect(std::cref(iOther.prePathEndRunSignal_));
189  //postPathEndRunSignal_.connect(std::cref(iOther.postPathEndRunSignal_));
190 
191  //prePathBeginLumiSignal_.connect(std::cref(iOther.prePathBeginLumiSignal_));
192  //postPathBeginLumiSignal_.connect(std::cref(iOther.postPathBeginLumiSignal_));
193 
194  //prePathEndLumiSignal_.connect(std::cref(iOther.prePathEndLumiSignal_));
195  //postPathEndLumiSignal_.connect(std::cref(iOther.postPathEndLumiSignal_));
196 
199 
202 
205 
208 
211 
214 
217 
220 
223 
226 
229 
232 
235 
238 
241 
244 
247 
250 
251  //preModuleSignal_.connect(std::cref(iOther.preModuleSignal_));
252  //postModuleSignal_.connect(std::cref(iOther.postModuleSignal_));
253 
254  //preModuleBeginRunSignal_.connect(std::cref(iOther.preModuleBeginRunSignal_));
255  //postModuleBeginRunSignal_.connect(std::cref(iOther.postModuleBeginRunSignal_));
256 
257  //preModuleEndRunSignal_.connect(std::cref(iOther.preModuleEndRunSignal_));
258  //postModuleEndRunSignal_.connect(std::cref(iOther.postModuleEndRunSignal_));
259 
260  //preModuleBeginLumiSignal_.connect(std::cref(iOther.preModuleBeginLumiSignal_));
261  //postModuleBeginLumiSignal_.connect(std::cref(iOther.postModuleBeginLumiSignal_));
262 
263  //preModuleEndLumiSignal_.connect(std::cref(iOther.preModuleEndLumiSignal_));
264  //postModuleEndLumiSignal_.connect(std::cref(iOther.postModuleEndLumiSignal_));
265 
269  }
270 
272  connectGlobals(iOther);
273  connectLocals(iOther);
274  }
275 
277  connectGlobals(iOther); // child sees parents global signals
278  iOther.connectLocals(*this); // parent see childs global signals
279  }
280 
282  copySlotsToFrom(preallocateSignal_, iOther.preallocateSignal_);
283  copySlotsToFrom(preBeginJobSignal_, iOther.preBeginJobSignal_);
284  copySlotsToFrom(postBeginJobSignal_, iOther.postBeginJobSignal_);
285  copySlotsToFromReverse(preEndJobSignal_, iOther.preEndJobSignal_);
286  copySlotsToFromReverse(postEndJobSignal_, iOther.postEndJobSignal_);
287 
288  copySlotsToFromReverse(jobFailureSignal_, iOther.jobFailureSignal_);
289 
290  copySlotsToFrom(preSourceSignal_, iOther.preSourceSignal_);
291  copySlotsToFromReverse(postSourceSignal_, iOther.postSourceSignal_);
292 
293  copySlotsToFrom(preSourceLumiSignal_, iOther.preSourceLumiSignal_);
294  copySlotsToFromReverse(postSourceLumiSignal_, iOther.postSourceLumiSignal_);
295 
296  copySlotsToFrom(preSourceRunSignal_, iOther.preSourceRunSignal_);
297  copySlotsToFromReverse(postSourceRunSignal_, iOther.postSourceRunSignal_);
298 
299  copySlotsToFrom(preOpenFileSignal_, iOther.preOpenFileSignal_);
300  copySlotsToFromReverse(postOpenFileSignal_, iOther.postOpenFileSignal_);
301 
302  copySlotsToFrom(preCloseFileSignal_, iOther.preCloseFileSignal_);
303  copySlotsToFromReverse(postCloseFileSignal_, iOther.postCloseFileSignal_);
304 
306  copySlotsToFromReverse(postModuleBeginStreamSignal_, iOther.postModuleBeginStreamSignal_);
307 
308  copySlotsToFrom(preModuleEndStreamSignal_, iOther.preModuleEndStreamSignal_);
309  copySlotsToFromReverse(postModuleEndStreamSignal_, iOther.postModuleEndStreamSignal_);
310 
311  copySlotsToFrom(preGlobalBeginRunSignal_, iOther.preGlobalBeginRunSignal_);
312  copySlotsToFromReverse(postGlobalBeginRunSignal_, iOther.postGlobalBeginRunSignal_);
313 
314  copySlotsToFrom(preGlobalEndRunSignal_, iOther.preGlobalEndRunSignal_);
315  copySlotsToFromReverse(postGlobalEndRunSignal_, iOther.postGlobalEndRunSignal_);
316 
317  copySlotsToFrom(preGlobalWriteRunSignal_, iOther.preGlobalWriteRunSignal_);
318  copySlotsToFromReverse(postGlobalWriteRunSignal_, iOther.postGlobalWriteRunSignal_);
319 
320  copySlotsToFrom(preStreamBeginRunSignal_, iOther.preStreamBeginRunSignal_);
321  copySlotsToFromReverse(postStreamBeginRunSignal_, iOther.postStreamBeginRunSignal_);
322 
323  copySlotsToFrom(preStreamEndRunSignal_, iOther.preStreamEndRunSignal_);
324  copySlotsToFromReverse(postStreamEndRunSignal_, iOther.postStreamEndRunSignal_);
325 
326  copySlotsToFrom(preGlobalBeginLumiSignal_, iOther.preGlobalBeginLumiSignal_);
327  copySlotsToFromReverse(postGlobalBeginLumiSignal_, iOther.postGlobalBeginLumiSignal_);
328 
329  copySlotsToFrom(preGlobalEndLumiSignal_, iOther.preGlobalEndLumiSignal_);
330  copySlotsToFromReverse(postGlobalEndLumiSignal_, iOther.postGlobalEndLumiSignal_);
331 
332  copySlotsToFrom(preGlobalWriteLumiSignal_, iOther.preGlobalWriteLumiSignal_);
333  copySlotsToFromReverse(postGlobalWriteLumiSignal_, iOther.postGlobalWriteLumiSignal_);
334 
335  copySlotsToFrom(preStreamBeginLumiSignal_, iOther.preStreamBeginLumiSignal_);
336  copySlotsToFromReverse(postStreamBeginLumiSignal_, iOther.postStreamBeginLumiSignal_);
337 
338  copySlotsToFrom(preStreamEndLumiSignal_, iOther.preStreamEndLumiSignal_);
339  copySlotsToFromReverse(postStreamEndLumiSignal_, iOther.postStreamEndLumiSignal_);
340 
341  copySlotsToFrom(preEventSignal_, iOther.preEventSignal_);
342  copySlotsToFromReverse(postEventSignal_, iOther.postEventSignal_);
343 
344  copySlotsToFrom(prePathEventSignal_, iOther.prePathEventSignal_);
345  copySlotsToFromReverse(postPathEventSignal_, iOther.postPathEventSignal_);
346 
350 
351  /*
352  copySlotsToFrom(preProcessEventSignal_, iOther.preProcessEventSignal_);
353  copySlotsToFromReverse(postProcessEventSignal_, iOther.postProcessEventSignal_);
354 
355  copySlotsToFrom(preBeginRunSignal_, iOther.preBeginRunSignal_);
356  copySlotsToFromReverse(postBeginRunSignal_, iOther.postBeginRunSignal_);
357 
358  copySlotsToFrom(preEndRunSignal_, iOther.preEndRunSignal_);
359  copySlotsToFromReverse(postEndRunSignal_, iOther.postEndRunSignal_);
360 
361  copySlotsToFrom(preBeginLumiSignal_, iOther.preBeginLumiSignal_);
362  copySlotsToFromReverse(postBeginLumiSignal_, iOther.postBeginLumiSignal_);
363 
364  copySlotsToFrom(preEndLumiSignal_, iOther.preEndLumiSignal_);
365  copySlotsToFromReverse(postEndLumiSignal_, iOther.postEndLumiSignal_);
366 
367  copySlotsToFrom(preProcessPathSignal_, iOther.preProcessPathSignal_);
368  copySlotsToFromReverse(postProcessPathSignal_, iOther.postProcessPathSignal_);
369 
370  copySlotsToFrom(prePathBeginRunSignal_, iOther.prePathBeginRunSignal_);
371  copySlotsToFromReverse(postPathBeginRunSignal_, iOther.postPathBeginRunSignal_);
372 
373  copySlotsToFrom(prePathEndRunSignal_, iOther.prePathEndRunSignal_);
374  copySlotsToFromReverse(postPathEndRunSignal_, iOther.postPathEndRunSignal_);
375 
376  copySlotsToFrom(prePathBeginLumiSignal_, iOther.prePathBeginLumiSignal_);
377  copySlotsToFromReverse(postPathBeginLumiSignal_, iOther.postPathBeginLumiSignal_);
378 
379  copySlotsToFrom(prePathEndLumiSignal_, iOther.prePathEndLumiSignal_);
380  copySlotsToFromReverse(postPathEndLumiSignal_, iOther.postPathEndLumiSignal_);
381 */
383  copySlotsToFromReverse(postModuleConstructionSignal_, iOther.postModuleConstructionSignal_);
384 
385  copySlotsToFrom(preModuleBeginJobSignal_, iOther.preModuleBeginJobSignal_);
386  copySlotsToFromReverse(postModuleBeginJobSignal_, iOther.postModuleBeginJobSignal_);
387 
388  copySlotsToFrom(preModuleEndJobSignal_, iOther.preModuleEndJobSignal_);
389  copySlotsToFromReverse(postModuleEndJobSignal_, iOther.postModuleEndJobSignal_);
390 
393 
394  copySlotsToFrom(preModuleEventSignal_, iOther.preModuleEventSignal_);
395  copySlotsToFromReverse(postModuleEventSignal_, iOther.postModuleEventSignal_);
396 
398  copySlotsToFromReverse(postModuleEventAcquireSignal_, iOther.postModuleEventAcquireSignal_);
399 
402 
404  copySlotsToFromReverse(postEventReadFromSourceSignal_, iOther.postEventReadFromSourceSignal_);
405 
408 
410  copySlotsToFromReverse(postModuleStreamEndRunSignal_, iOther.postModuleStreamEndRunSignal_);
411 
414 
416  copySlotsToFromReverse(postModuleStreamEndLumiSignal_, iOther.postModuleStreamEndLumiSignal_);
417 
420 
422  copySlotsToFromReverse(postModuleGlobalEndRunSignal_, iOther.postModuleGlobalEndRunSignal_);
423 
426 
428  copySlotsToFromReverse(postModuleGlobalEndLumiSignal_, iOther.postModuleGlobalEndLumiSignal_);
429 
430  copySlotsToFrom(preModuleWriteRunSignal_, iOther.preModuleWriteRunSignal_);
431  copySlotsToFromReverse(postModuleWriteRunSignal_, iOther.postModuleWriteRunSignal_);
432 
433  copySlotsToFrom(preModuleWriteLumiSignal_, iOther.preModuleWriteLumiSignal_);
434  copySlotsToFromReverse(postModuleWriteLumiSignal_, iOther.postModuleWriteLumiSignal_);
435 
436  /*
437  copySlotsToFrom(preModuleSignal_, iOther.preModuleSignal_);
438  copySlotsToFromReverse(postModuleSignal_, iOther.postModuleSignal_);
439 
440  copySlotsToFrom(preModuleBeginRunSignal_, iOther.preModuleBeginRunSignal_);
441  copySlotsToFromReverse(postModuleBeginRunSignal_, iOther.postModuleBeginRunSignal_);
442 
443  copySlotsToFrom(preModuleEndRunSignal_, iOther.preModuleEndRunSignal_);
444  copySlotsToFromReverse(postModuleEndRunSignal_, iOther.postModuleEndRunSignal_);
445 
446  copySlotsToFrom(preModuleBeginLumiSignal_, iOther.preModuleBeginLumiSignal_);
447  copySlotsToFromReverse(postModuleBeginLumiSignal_, iOther.postModuleBeginLumiSignal_);
448 
449  copySlotsToFrom(preModuleEndLumiSignal_, iOther.preModuleEndLumiSignal_);
450  copySlotsToFromReverse(postModuleEndLumiSignal_, iOther.postModuleEndLumiSignal_);
451  */
453  copySlotsToFromReverse(postSourceConstructionSignal_, iOther.postSourceConstructionSignal_);
454 
456  copySlotsToFromReverse(postLockEventSetupGetSignal_, iOther.postLockEventSetupGetSignal_);
457  copySlotsToFromReverse(postEventSetupGetSignal_, iOther.postEventSetupGetSignal_);
458  }
459 
460  //
461  // const member functions
462  //
463 
464  //
465  // static member functions
466  //
467 } // namespace edm
edm::ActivityRegistry::postStreamBeginRunSignal_
PostStreamBeginRun postStreamBeginRunSignal_
Definition: ActivityRegistry.h:313
edm::ActivityRegistry::preModuleGlobalEndLumiSignal_
PreModuleGlobalEndLumi preModuleGlobalEndLumiSignal_
Definition: ActivityRegistry.h:827
edm::ActivityRegistry::preGlobalWriteLumiSignal_
PreGlobalEndLumi preGlobalWriteLumiSignal_
Definition: ActivityRegistry.h:358
edm::ActivityRegistry::preOpenFileSignal_
PreOpenFile preOpenFileSignal_
Definition: ActivityRegistry.h:217
edm::ActivityRegistry::preGlobalEndLumiSignal_
PreGlobalEndLumi preGlobalEndLumiSignal_
Definition: ActivityRegistry.h:346
edm::ActivityRegistry::preEndJobSignal_
PreEndJob preEndJobSignal_
signal is emitted before any modules have gotten their endJob called
Definition: ActivityRegistry.h:161
edm::ActivityRegistry::postGlobalWriteRunSignal_
PostGlobalWriteRun postGlobalWriteRunSignal_
Definition: ActivityRegistry.h:301
edm
HLT enums.
Definition: AlignableModifier.h:19
edm::ActivityRegistry::preModuleWriteRunSignal_
PreModuleWriteRun preModuleWriteRunSignal_
Definition: ActivityRegistry.h:841
edm::ActivityRegistry::preStreamBeginLumiSignal_
PreStreamBeginLumi preStreamBeginLumiSignal_
Definition: ActivityRegistry.h:372
edm::ActivityRegistry::preSourceEarlyTerminationSignal_
PreSourceEarlyTermination preSourceEarlyTerminationSignal_
Definition: ActivityRegistry.h:442
edm::ActivityRegistry::preModuleStreamBeginLumiSignal_
PreModuleStreamBeginLumi preModuleStreamBeginLumiSignal_
Definition: ActivityRegistry.h:757
edm::ActivityRegistry::postModuleStreamBeginRunSignal_
PostModuleStreamBeginRun postModuleStreamBeginRunSignal_
Definition: ActivityRegistry.h:736
Algorithms.h
edm::ActivityRegistry::preSourceSignal_
PreSourceEvent preSourceSignal_
Definition: ActivityRegistry.h:181
edm::ActivityRegistry::jobFailureSignal_
JobFailure jobFailureSignal_
Definition: ActivityRegistry.h:174
edm::ActivityRegistry::postModuleGlobalBeginLumiSignal_
PostModuleGlobalBeginLumi postModuleGlobalBeginLumiSignal_
Definition: ActivityRegistry.h:820
edm::ActivityRegistry::postModuleBeginJobSignal_
PostModuleBeginJob postModuleBeginJobSignal_
Definition: ActivityRegistry.h:632
edm::ActivityRegistry::preModuleGlobalBeginRunSignal_
PreModuleGlobalBeginRun preModuleGlobalBeginRunSignal_
Definition: ActivityRegistry.h:785
edm::ActivityRegistry::postModuleEndStreamSignal_
PostModuleEndStream postModuleEndStreamSignal_
Definition: ActivityRegistry.h:264
edm::ActivityRegistry::preModuleStreamEndLumiSignal_
PreModuleStreamEndLumi preModuleStreamEndLumiSignal_
Definition: ActivityRegistry.h:771
edm::ActivityRegistry::postModuleGlobalEndLumiSignal_
PostModuleGlobalEndLumi postModuleGlobalEndLumiSignal_
Definition: ActivityRegistry.h:834
edm::ActivityRegistry::postModuleWriteLumiSignal_
PostModuleWriteLumi postModuleWriteLumiSignal_
Definition: ActivityRegistry.h:860
edm::ActivityRegistry::preModuleEndJobSignal_
PreModuleEndJob preModuleEndJobSignal_
Definition: ActivityRegistry.h:640
edm::ActivityRegistry::preStreamEndLumiSignal_
PreStreamEndLumi preStreamEndLumiSignal_
Definition: ActivityRegistry.h:386
groupFilesInBlocks.reverse
reverse
Definition: groupFilesInBlocks.py:131
edm::ActivityRegistry::postPathEventSignal_
PostPathEvent postPathEventSignal_
Definition: ActivityRegistry.h:417
edm::ActivityRegistry::postModuleStreamEndLumiSignal_
PostModuleStreamEndLumi postModuleStreamEndLumiSignal_
Definition: ActivityRegistry.h:778
ActivityRegistry.h
edm::ActivityRegistry::postModuleWriteRunSignal_
PostModuleWriteRun postModuleWriteRunSignal_
Definition: ActivityRegistry.h:846
edm::ActivityRegistry::postEventSetupGetSignal_
PostEventSetupGet postEventSetupGetSignal_
signal is emitted after getImpl has returned in the EventSetup DataProxy::get function
Definition: ActivityRegistry.h:988
edm::ActivityRegistry::preSourceLumiSignal_
PreSourceLumi preSourceLumiSignal_
Definition: ActivityRegistry.h:193
edm::signalslot::throwObsoleteSignalException
void throwObsoleteSignalException()
Definition: ActivityRegistry.cc:85
edm::ActivityRegistry::postGlobalWriteLumiSignal_
PostGlobalEndLumi postGlobalWriteLumiSignal_
Definition: ActivityRegistry.h:365
edm::ActivityRegistry::preModuleEventAcquireSignal_
PreModuleEventAcquire preModuleEventAcquireSignal_
Definition: ActivityRegistry.h:682
edm::ActivityRegistry::connectLocals
void connectLocals(ActivityRegistry &iOther)
Definition: ActivityRegistry.cc:122
edm::ActivityRegistry::postModuleEventAcquireSignal_
PostModuleEventAcquire postModuleEventAcquireSignal_
Definition: ActivityRegistry.h:690
edm::ActivityRegistry::preModuleStreamBeginRunSignal_
PreModuleStreamBeginRun preModuleStreamBeginRunSignal_
Definition: ActivityRegistry.h:729
edm::ActivityRegistry::postOpenFileSignal_
PostOpenFile postOpenFileSignal_
Definition: ActivityRegistry.h:224
edm::ActivityRegistry::preSourceRunSignal_
PreSourceRun preSourceRunSignal_
Definition: ActivityRegistry.h:205
edm::ActivityRegistry::postGlobalBeginLumiSignal_
PostGlobalBeginLumi postGlobalBeginLumiSignal_
Definition: ActivityRegistry.h:339
edm::ActivityRegistry::preModuleEventSignal_
PreModuleEvent preModuleEventSignal_
Definition: ActivityRegistry.h:670
edm::ActivityRegistry
Definition: ActivityRegistry.h:132
edm::ActivityRegistry::preGlobalEndRunSignal_
PreGlobalEndRun preGlobalEndRunSignal_
Definition: ActivityRegistry.h:284
edm::ActivityRegistry::postModuleConstructionSignal_
PostModuleConstruction postModuleConstructionSignal_
Definition: ActivityRegistry.h:617
edm::ActivityRegistry::preModuleEventPrefetchingSignal_
PreModuleEventPrefetching preModuleEventPrefetchingSignal_
Definition: ActivityRegistry.h:654
edm::ActivityRegistry::postModuleBeginStreamSignal_
PostModuleBeginStream postModuleBeginStreamSignal_
Definition: ActivityRegistry.h:250
edm::ActivityRegistry::postEndJobSignal_
PostEndJob postEndJobSignal_
signal is emitted after all modules have gotten their endJob called
Definition: ActivityRegistry.h:167
edm::ActivityRegistry::connectToSubProcess
void connectToSubProcess(ActivityRegistry &iOther)
Definition: ActivityRegistry.cc:276
edm::ActivityRegistry::postModuleGlobalBeginRunSignal_
PostModuleGlobalBeginRun postModuleGlobalBeginRunSignal_
Definition: ActivityRegistry.h:792
edm::ActivityRegistry::postModuleEventDelayedGetSignal_
PostModuleEventDelayedGet postModuleEventDelayedGetSignal_
Definition: ActivityRegistry.h:706
edm::ActivityRegistry::postSourceRunSignal_
PostSourceRun postSourceRunSignal_
Definition: ActivityRegistry.h:211
edm::ActivityRegistry::preModuleGlobalEndRunSignal_
PreModuleGlobalEndRun preModuleGlobalEndRunSignal_
Definition: ActivityRegistry.h:799
edm::ActivityRegistry::postLockEventSetupGetSignal_
PostLockEventSetupGet postLockEventSetupGetSignal_
signal is emitted after lock taken in EventSetup DataProxy::get function
Definition: ActivityRegistry.h:978
edm::ActivityRegistry::postEventReadFromSourceSignal_
PostEventReadFromSource postEventReadFromSourceSignal_
Definition: ActivityRegistry.h:722
edm::ActivityRegistry::postModuleEventSignal_
PostModuleEvent postModuleEventSignal_
Definition: ActivityRegistry.h:676
edm::ActivityRegistry::preBeginJobSignal_
PreBeginJob preBeginJobSignal_
signal is emitted before all modules have gotten their beginJob called
Definition: ActivityRegistry.h:147
edm::ActivityRegistry::preSourceConstructionSignal_
PreSourceConstruction preSourceConstructionSignal_
Definition: ActivityRegistry.h:948
edm::ActivityRegistry::postSourceLumiSignal_
PostSourceLumi postSourceLumiSignal_
Definition: ActivityRegistry.h:199
edm::ActivityRegistry::postCloseFileSignal_
PostCloseFile postCloseFileSignal_
Definition: ActivityRegistry.h:238
edm::ActivityRegistry::preStreamBeginRunSignal_
PreStreamBeginRun preStreamBeginRunSignal_
Definition: ActivityRegistry.h:308
edm::ActivityRegistry::copySlotsFrom
void copySlotsFrom(ActivityRegistry &iOther)
Definition: ActivityRegistry.cc:281
edm::ActivityRegistry::preGlobalBeginLumiSignal_
PreGlobalBeginLumi preGlobalBeginLumiSignal_
Definition: ActivityRegistry.h:332
edm::ActivityRegistry::prePathEventSignal_
PrePathEvent prePathEventSignal_
Definition: ActivityRegistry.h:411
edm::ActivityRegistry::postGlobalBeginRunSignal_
PostGlobalBeginRun postGlobalBeginRunSignal_
Definition: ActivityRegistry.h:277
edm::ActivityRegistry::preModuleStreamEndRunSignal_
PreModuleStreamEndRun preModuleStreamEndRunSignal_
Definition: ActivityRegistry.h:743
edm::ActivityRegistry::postBeginJobSignal_
PostBeginJob postBeginJobSignal_
signal is emitted after all modules have gotten their beginJob called
Definition: ActivityRegistry.h:154
edm::ActivityRegistry::preGlobalBeginRunSignal_
PreGlobalBeginRun preGlobalBeginRunSignal_
signal is emitted after the Run has been created by the InputSource but before any modules have seen ...
Definition: ActivityRegistry.h:272
edm::ActivityRegistry::preModuleEventDelayedGetSignal_
PreModuleEventDelayedGet preModuleEventDelayedGetSignal_
Definition: ActivityRegistry.h:698
edm::ActivityRegistry::preModuleWriteLumiSignal_
PreModuleWriteLumi preModuleWriteLumiSignal_
Definition: ActivityRegistry.h:853
edm::ActivityRegistry::postEventSignal_
PostEvent postEventSignal_
signal is emitted after all modules have finished processing the Event
Definition: ActivityRegistry.h:405
edm::ActivityRegistry::postGlobalEndLumiSignal_
PostGlobalEndLumi postGlobalEndLumiSignal_
Definition: ActivityRegistry.h:351
edm::ActivityRegistry::postSourceConstructionSignal_
PostSourceConstruction postSourceConstructionSignal_
Definition: ActivityRegistry.h:957
edm::ActivityRegistry::connect
void connect(ActivityRegistry &iOther)
forwards our signals to slots connected to iOther
Definition: ActivityRegistry.cc:271
edm::ActivityRegistry::postStreamEndLumiSignal_
PostStreamEndLumi postStreamEndLumiSignal_
Definition: ActivityRegistry.h:391
edm::ActivityRegistry::postModuleGlobalEndRunSignal_
PostModuleGlobalEndRun postModuleGlobalEndRunSignal_
Definition: ActivityRegistry.h:806
edm::ActivityRegistry::preEventSignal_
PreEvent preEventSignal_
signal is emitted after the Event has been created by the InputSource but before any modules have see...
Definition: ActivityRegistry.h:399
edm::ActivityRegistry::postStreamEndRunSignal_
PostStreamEndRun postStreamEndRunSignal_
Definition: ActivityRegistry.h:325
edm::ActivityRegistry::preLockEventSetupGetSignal_
PreLockEventSetupGet preLockEventSetupGetSignal_
signal is emitted before lock taken in EventSetup DataProxy::get function
Definition: ActivityRegistry.h:968
edm::ActivityRegistry::preModuleConstructionSignal_
PreModuleConstruction preModuleConstructionSignal_
Definition: ActivityRegistry.h:608
edm::ActivityRegistry::preCloseFileSignal_
PreCloseFile preCloseFileSignal_
Definition: ActivityRegistry.h:232
edm::ActivityRegistry::preModuleEndStreamSignal_
PreModuleEndStream preModuleEndStreamSignal_
Definition: ActivityRegistry.h:257
T
long double T
Definition: Basic3DVectorLD.h:48
edm::ActivityRegistry::preModuleBeginStreamSignal_
PreModuleBeginStream preModuleBeginStreamSignal_
Definition: ActivityRegistry.h:243
Exception
Definition: hltDiff.cc:246
edm::ActivityRegistry::postModuleStreamBeginLumiSignal_
PostModuleStreamBeginLumi postModuleStreamBeginLumiSignal_
Definition: ActivityRegistry.h:764
edm::ActivityRegistry::preallocateSignal_
Preallocate preallocateSignal_
signal is emitted before beginJob
Definition: ActivityRegistry.h:141
edm::ActivityRegistry::postGlobalEndRunSignal_
PostGlobalEndRun postGlobalEndRunSignal_
Definition: ActivityRegistry.h:289
edm::ActivityRegistry::postSourceSignal_
PostSourceEvent postSourceSignal_
Definition: ActivityRegistry.h:187
edm::ActivityRegistry::preEventReadFromSourceSignal_
PreEventReadFromSource preEventReadFromSourceSignal_
Definition: ActivityRegistry.h:714
Exception.h
edm::ActivityRegistry::preGlobalWriteRunSignal_
PreGlobalWriteRun preGlobalWriteRunSignal_
Definition: ActivityRegistry.h:296
edm::ActivityRegistry::preStreamEndRunSignal_
PreStreamEndRun preStreamEndRunSignal_
Definition: ActivityRegistry.h:320
edm::ActivityRegistry::postModuleStreamEndRunSignal_
PostModuleStreamEndRun postModuleStreamEndRunSignal_
Definition: ActivityRegistry.h:750
edm::ActivityRegistry::postModuleEventPrefetchingSignal_
PostModuleEventPrefetching postModuleEventPrefetchingSignal_
Definition: ActivityRegistry.h:662
edm::signalslot::Signal::connect
void connect(U iFunc)
Definition: Signal.h:62
edm::ActivityRegistry::preStreamEarlyTerminationSignal_
PreStreamEarlyTermination preStreamEarlyTerminationSignal_
Definition: ActivityRegistry.h:424
edm::ActivityRegistry::preModuleBeginJobSignal_
PreModuleBeginJob preModuleBeginJobSignal_
Definition: ActivityRegistry.h:626
edm::ActivityRegistry::connectGlobals
void connectGlobals(ActivityRegistry &iOther)
Definition: ActivityRegistry.cc:91
edm::ActivityRegistry::postStreamBeginLumiSignal_
PostStreamBeginLumi postStreamBeginLumiSignal_
Definition: ActivityRegistry.h:379
edm::ActivityRegistry::postModuleEndJobSignal_
PostModuleEndJob postModuleEndJobSignal_
Definition: ActivityRegistry.h:646
edm::ActivityRegistry::preModuleGlobalBeginLumiSignal_
PreModuleGlobalBeginLumi preModuleGlobalBeginLumiSignal_
Definition: ActivityRegistry.h:813
edm::ActivityRegistry::preGlobalEarlyTerminationSignal_
PreGlobalEarlyTermination preGlobalEarlyTerminationSignal_
Definition: ActivityRegistry.h:433