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 
163 
166 
169 
172 
173  preEventSignal_.connect(std::cref(iOther.preEventSignal_));
174  postEventSignal_.connect(std::cref(iOther.postEventSignal_));
175 
178 
179  //preProcessEventSignal_.connect(std::cref(iOther.preProcessEventSignal_));
180  //postProcessEventSignal_.connect(std::cref(iOther.postProcessEventSignal_));
181 
182  //preBeginRunSignal_.connect(std::cref(iOther.preBeginRunSignal_));
183  //postBeginRunSignal_.connect(std::cref(iOther.postBeginRunSignal_));
184 
185  //preEndRunSignal_.connect(std::cref(iOther.preEndRunSignal_));
186  //postEndRunSignal_.connect(std::cref(iOther.postEndRunSignal_));
187 
188  //preBeginLumiSignal_.connect(std::cref(iOther.preBeginLumiSignal_));
189  //postBeginLumiSignal_.connect(std::cref(iOther.postBeginLumiSignal_));
190 
191  //preEndLumiSignal_.connect(std::cref(iOther.preEndLumiSignal_));
192  //postEndLumiSignal_.connect(std::cref(iOther.postEndLumiSignal_));
193 
194  //preProcessPathSignal_.connect(std::cref(iOther.preProcessPathSignal_));
195  //postProcessPathSignal_.connect(std::cref(iOther.postProcessPathSignal_));
196 
197  //prePathBeginRunSignal_.connect(std::cref(iOther.prePathBeginRunSignal_));
198  //postPathBeginRunSignal_.connect(std::cref(iOther.postPathBeginRunSignal_));
199 
200  //prePathEndRunSignal_.connect(std::cref(iOther.prePathEndRunSignal_));
201  //postPathEndRunSignal_.connect(std::cref(iOther.postPathEndRunSignal_));
202 
203  //prePathBeginLumiSignal_.connect(std::cref(iOther.prePathBeginLumiSignal_));
204  //postPathBeginLumiSignal_.connect(std::cref(iOther.postPathBeginLumiSignal_));
205 
206  //prePathEndLumiSignal_.connect(std::cref(iOther.prePathEndLumiSignal_));
207  //postPathEndLumiSignal_.connect(std::cref(iOther.postPathEndLumiSignal_));
208 
211 
214 
217 
220 
223 
226 
229 
232 
235 
238 
241 
244 
247 
250 
253 
256 
259 
262 
265 
268 
271 
274 
277 
280 
281  preESModuleSignal_.connect(std::cref(iOther.preESModuleSignal_));
283 
284  //preModuleSignal_.connect(std::cref(iOther.preModuleSignal_));
285  //postModuleSignal_.connect(std::cref(iOther.postModuleSignal_));
286 
287  //preModuleBeginRunSignal_.connect(std::cref(iOther.preModuleBeginRunSignal_));
288  //postModuleBeginRunSignal_.connect(std::cref(iOther.postModuleBeginRunSignal_));
289 
290  //preModuleEndRunSignal_.connect(std::cref(iOther.preModuleEndRunSignal_));
291  //postModuleEndRunSignal_.connect(std::cref(iOther.postModuleEndRunSignal_));
292 
293  //preModuleBeginLumiSignal_.connect(std::cref(iOther.preModuleBeginLumiSignal_));
294  //postModuleBeginLumiSignal_.connect(std::cref(iOther.postModuleBeginLumiSignal_));
295 
296  //preModuleEndLumiSignal_.connect(std::cref(iOther.preModuleEndLumiSignal_));
297  //postModuleEndLumiSignal_.connect(std::cref(iOther.postModuleEndLumiSignal_));
298  }
299 
301  connectGlobals(iOther);
302  connectLocals(iOther);
303  }
304 
306  connectGlobals(iOther); // child sees parents global signals
307  iOther.connectLocals(*this); // parent see childs global signals
308  }
309 
311  copySlotsToFrom(preallocateSignal_, iOther.preallocateSignal_);
312  copySlotsToFrom(preBeginJobSignal_, iOther.preBeginJobSignal_);
313  copySlotsToFrom(postBeginJobSignal_, iOther.postBeginJobSignal_);
314  copySlotsToFromReverse(preEndJobSignal_, iOther.preEndJobSignal_);
315  copySlotsToFromReverse(postEndJobSignal_, iOther.postEndJobSignal_);
316 
317  copySlotsToFromReverse(jobFailureSignal_, iOther.jobFailureSignal_);
318 
319  copySlotsToFrom(preSourceSignal_, iOther.preSourceSignal_);
320  copySlotsToFromReverse(postSourceSignal_, iOther.postSourceSignal_);
321 
322  copySlotsToFrom(preSourceLumiSignal_, iOther.preSourceLumiSignal_);
323  copySlotsToFromReverse(postSourceLumiSignal_, iOther.postSourceLumiSignal_);
324 
325  copySlotsToFrom(preSourceRunSignal_, iOther.preSourceRunSignal_);
326  copySlotsToFromReverse(postSourceRunSignal_, iOther.postSourceRunSignal_);
327 
328  copySlotsToFrom(preOpenFileSignal_, iOther.preOpenFileSignal_);
329  copySlotsToFromReverse(postOpenFileSignal_, iOther.postOpenFileSignal_);
330 
331  copySlotsToFrom(preCloseFileSignal_, iOther.preCloseFileSignal_);
332  copySlotsToFromReverse(postCloseFileSignal_, iOther.postCloseFileSignal_);
333 
335  copySlotsToFromReverse(postModuleBeginStreamSignal_, iOther.postModuleBeginStreamSignal_);
336 
337  copySlotsToFrom(preModuleEndStreamSignal_, iOther.preModuleEndStreamSignal_);
338  copySlotsToFromReverse(postModuleEndStreamSignal_, iOther.postModuleEndStreamSignal_);
339 
341  copySlotsToFromReverse(postBeginProcessBlockSignal_, iOther.postBeginProcessBlockSignal_);
342 
345 
346  copySlotsToFrom(preEndProcessBlockSignal_, iOther.preEndProcessBlockSignal_);
347  copySlotsToFromReverse(postEndProcessBlockSignal_, iOther.postEndProcessBlockSignal_);
348 
349  copySlotsToFrom(preGlobalBeginRunSignal_, iOther.preGlobalBeginRunSignal_);
350  copySlotsToFromReverse(postGlobalBeginRunSignal_, iOther.postGlobalBeginRunSignal_);
351 
352  copySlotsToFrom(preGlobalEndRunSignal_, iOther.preGlobalEndRunSignal_);
353  copySlotsToFromReverse(postGlobalEndRunSignal_, iOther.postGlobalEndRunSignal_);
354 
356  copySlotsToFromReverse(postWriteProcessBlockSignal_, iOther.postWriteProcessBlockSignal_);
357 
358  copySlotsToFrom(preGlobalWriteRunSignal_, iOther.preGlobalWriteRunSignal_);
359  copySlotsToFromReverse(postGlobalWriteRunSignal_, iOther.postGlobalWriteRunSignal_);
360 
361  copySlotsToFrom(preStreamBeginRunSignal_, iOther.preStreamBeginRunSignal_);
362  copySlotsToFromReverse(postStreamBeginRunSignal_, iOther.postStreamBeginRunSignal_);
363 
364  copySlotsToFrom(preStreamEndRunSignal_, iOther.preStreamEndRunSignal_);
365  copySlotsToFromReverse(postStreamEndRunSignal_, iOther.postStreamEndRunSignal_);
366 
367  copySlotsToFrom(preGlobalBeginLumiSignal_, iOther.preGlobalBeginLumiSignal_);
368  copySlotsToFromReverse(postGlobalBeginLumiSignal_, iOther.postGlobalBeginLumiSignal_);
369 
370  copySlotsToFrom(preGlobalEndLumiSignal_, iOther.preGlobalEndLumiSignal_);
371  copySlotsToFromReverse(postGlobalEndLumiSignal_, iOther.postGlobalEndLumiSignal_);
372 
373  copySlotsToFrom(preGlobalWriteLumiSignal_, iOther.preGlobalWriteLumiSignal_);
374  copySlotsToFromReverse(postGlobalWriteLumiSignal_, iOther.postGlobalWriteLumiSignal_);
375 
376  copySlotsToFrom(preStreamBeginLumiSignal_, iOther.preStreamBeginLumiSignal_);
377  copySlotsToFromReverse(postStreamBeginLumiSignal_, iOther.postStreamBeginLumiSignal_);
378 
379  copySlotsToFrom(preStreamEndLumiSignal_, iOther.preStreamEndLumiSignal_);
380  copySlotsToFromReverse(postStreamEndLumiSignal_, iOther.postStreamEndLumiSignal_);
381 
382  copySlotsToFrom(preEventSignal_, iOther.preEventSignal_);
383  copySlotsToFromReverse(postEventSignal_, iOther.postEventSignal_);
384 
385  copySlotsToFrom(prePathEventSignal_, iOther.prePathEventSignal_);
386  copySlotsToFromReverse(postPathEventSignal_, iOther.postPathEventSignal_);
387 
391 
392  /*
393  copySlotsToFrom(preProcessEventSignal_, iOther.preProcessEventSignal_);
394  copySlotsToFromReverse(postProcessEventSignal_, iOther.postProcessEventSignal_);
395 
396  copySlotsToFrom(preBeginRunSignal_, iOther.preBeginRunSignal_);
397  copySlotsToFromReverse(postBeginRunSignal_, iOther.postBeginRunSignal_);
398 
399  copySlotsToFrom(preEndRunSignal_, iOther.preEndRunSignal_);
400  copySlotsToFromReverse(postEndRunSignal_, iOther.postEndRunSignal_);
401 
402  copySlotsToFrom(preBeginLumiSignal_, iOther.preBeginLumiSignal_);
403  copySlotsToFromReverse(postBeginLumiSignal_, iOther.postBeginLumiSignal_);
404 
405  copySlotsToFrom(preEndLumiSignal_, iOther.preEndLumiSignal_);
406  copySlotsToFromReverse(postEndLumiSignal_, iOther.postEndLumiSignal_);
407 
408  copySlotsToFrom(preProcessPathSignal_, iOther.preProcessPathSignal_);
409  copySlotsToFromReverse(postProcessPathSignal_, iOther.postProcessPathSignal_);
410 
411  copySlotsToFrom(prePathBeginRunSignal_, iOther.prePathBeginRunSignal_);
412  copySlotsToFromReverse(postPathBeginRunSignal_, iOther.postPathBeginRunSignal_);
413 
414  copySlotsToFrom(prePathEndRunSignal_, iOther.prePathEndRunSignal_);
415  copySlotsToFromReverse(postPathEndRunSignal_, iOther.postPathEndRunSignal_);
416 
417  copySlotsToFrom(prePathBeginLumiSignal_, iOther.prePathBeginLumiSignal_);
418  copySlotsToFromReverse(postPathBeginLumiSignal_, iOther.postPathBeginLumiSignal_);
419 
420  copySlotsToFrom(prePathEndLumiSignal_, iOther.prePathEndLumiSignal_);
421  copySlotsToFromReverse(postPathEndLumiSignal_, iOther.postPathEndLumiSignal_);
422 */
424  copySlotsToFromReverse(postModuleConstructionSignal_, iOther.postModuleConstructionSignal_);
425 
427  copySlotsToFromReverse(postModuleDestructionSignal_, iOther.postModuleDestructionSignal_);
428 
429  copySlotsToFrom(preModuleBeginJobSignal_, iOther.preModuleBeginJobSignal_);
430  copySlotsToFromReverse(postModuleBeginJobSignal_, iOther.postModuleBeginJobSignal_);
431 
432  copySlotsToFrom(preModuleEndJobSignal_, iOther.preModuleEndJobSignal_);
433  copySlotsToFromReverse(postModuleEndJobSignal_, iOther.postModuleEndJobSignal_);
434 
437 
438  copySlotsToFrom(preModuleEventSignal_, iOther.preModuleEventSignal_);
439  copySlotsToFromReverse(postModuleEventSignal_, iOther.postModuleEventSignal_);
440 
442  copySlotsToFromReverse(postModuleEventAcquireSignal_, iOther.postModuleEventAcquireSignal_);
443 
446 
448  copySlotsToFromReverse(postEventReadFromSourceSignal_, iOther.postEventReadFromSourceSignal_);
449 
452 
454  copySlotsToFromReverse(postModuleStreamEndRunSignal_, iOther.postModuleStreamEndRunSignal_);
455 
458 
460  copySlotsToFromReverse(postModuleStreamEndLumiSignal_, iOther.postModuleStreamEndLumiSignal_);
461 
464 
467 
470 
473 
475  copySlotsToFromReverse(postModuleGlobalEndRunSignal_, iOther.postModuleGlobalEndRunSignal_);
476 
479 
481  copySlotsToFromReverse(postModuleGlobalEndLumiSignal_, iOther.postModuleGlobalEndLumiSignal_);
482 
485 
486  copySlotsToFrom(preModuleWriteRunSignal_, iOther.preModuleWriteRunSignal_);
487  copySlotsToFromReverse(postModuleWriteRunSignal_, iOther.postModuleWriteRunSignal_);
488 
489  copySlotsToFrom(preModuleWriteLumiSignal_, iOther.preModuleWriteLumiSignal_);
490  copySlotsToFromReverse(postModuleWriteLumiSignal_, iOther.postModuleWriteLumiSignal_);
491 
493  copySlotsToFromReverse(postESModulePrefetchingSignal_, iOther.postESModulePrefetchingSignal_);
494 
495  copySlotsToFrom(preESModuleSignal_, iOther.preESModuleSignal_);
496  copySlotsToFromReverse(postESModuleSignal_, iOther.postESModuleSignal_);
497  /*
498  copySlotsToFrom(preModuleSignal_, iOther.preModuleSignal_);
499  copySlotsToFromReverse(postModuleSignal_, iOther.postModuleSignal_);
500 
501  copySlotsToFrom(preModuleBeginRunSignal_, iOther.preModuleBeginRunSignal_);
502  copySlotsToFromReverse(postModuleBeginRunSignal_, iOther.postModuleBeginRunSignal_);
503 
504  copySlotsToFrom(preModuleEndRunSignal_, iOther.preModuleEndRunSignal_);
505  copySlotsToFromReverse(postModuleEndRunSignal_, iOther.postModuleEndRunSignal_);
506 
507  copySlotsToFrom(preModuleBeginLumiSignal_, iOther.preModuleBeginLumiSignal_);
508  copySlotsToFromReverse(postModuleBeginLumiSignal_, iOther.postModuleBeginLumiSignal_);
509 
510  copySlotsToFrom(preModuleEndLumiSignal_, iOther.preModuleEndLumiSignal_);
511  copySlotsToFromReverse(postModuleEndLumiSignal_, iOther.postModuleEndLumiSignal_);
512  */
514  copySlotsToFromReverse(postSourceConstructionSignal_, iOther.postSourceConstructionSignal_);
515  }
516 
517  //
518  // const member functions
519  //
520 
521  //
522  // static member functions
523  //
524 } // namespace edm
edm::ActivityRegistry::postStreamBeginRunSignal_
PostStreamBeginRun postStreamBeginRunSignal_
Definition: ActivityRegistry.h:371
edm::ActivityRegistry::preModuleGlobalEndLumiSignal_
PreModuleGlobalEndLumi preModuleGlobalEndLumiSignal_
Definition: ActivityRegistry.h:976
edm::ActivityRegistry::postModuleBeginProcessBlockSignal_
PostModuleBeginProcessBlock postModuleBeginProcessBlockSignal_
Definition: ActivityRegistry.h:898
edm::ActivityRegistry::preGlobalWriteLumiSignal_
PreGlobalEndLumi preGlobalWriteLumiSignal_
Definition: ActivityRegistry.h:416
edm::ActivityRegistry::postModuleAccessInputProcessBlockSignal_
PostModuleAccessInputProcessBlock postModuleAccessInputProcessBlockSignal_
Definition: ActivityRegistry.h:913
edm::ActivityRegistry::preOpenFileSignal_
PreOpenFile preOpenFileSignal_
Definition: ActivityRegistry.h:219
edm::ActivityRegistry::preESModulePrefetchingSignal_
PreESModulePrefetching preESModulePrefetchingSignal_
Definition: ActivityRegistry.h:509
edm::ActivityRegistry::preGlobalEndLumiSignal_
PreGlobalEndLumi preGlobalEndLumiSignal_
Definition: ActivityRegistry.h:404
edm::ActivityRegistry::preEndJobSignal_
PreEndJob preEndJobSignal_
signal is emitted before any modules have gotten their endJob called
Definition: ActivityRegistry.h:163
edm::ActivityRegistry::preModuleBeginProcessBlockSignal_
PreModuleBeginProcessBlock preModuleBeginProcessBlockSignal_
Definition: ActivityRegistry.h:891
edm::ActivityRegistry::postGlobalWriteRunSignal_
PostGlobalWriteRun postGlobalWriteRunSignal_
Definition: ActivityRegistry.h:359
edm
HLT enums.
Definition: AlignableModifier.h:19
edm::ActivityRegistry::preModuleWriteRunSignal_
PreModuleWriteRun preModuleWriteRunSignal_
Definition: ActivityRegistry.h:1004
edm::ActivityRegistry::preStreamBeginLumiSignal_
PreStreamBeginLumi preStreamBeginLumiSignal_
Definition: ActivityRegistry.h:430
edm::ActivityRegistry::preSourceEarlyTerminationSignal_
PreSourceEarlyTermination preSourceEarlyTerminationSignal_
Definition: ActivityRegistry.h:500
edm::ActivityRegistry::preModuleStreamBeginLumiSignal_
PreModuleStreamBeginLumi preModuleStreamBeginLumiSignal_
Definition: ActivityRegistry.h:863
edm::ActivityRegistry::postModuleStreamBeginRunSignal_
PostModuleStreamBeginRun postModuleStreamBeginRunSignal_
Definition: ActivityRegistry.h:842
Algorithms.h
edm::ActivityRegistry::preESModuleSignal_
PreESModule preESModuleSignal_
Definition: ActivityRegistry.h:526
edm::ActivityRegistry::preSourceSignal_
PreSourceEvent preSourceSignal_
Definition: ActivityRegistry.h:183
edm::ActivityRegistry::jobFailureSignal_
JobFailure jobFailureSignal_
Definition: ActivityRegistry.h:176
edm::ActivityRegistry::postModuleGlobalBeginLumiSignal_
PostModuleGlobalBeginLumi postModuleGlobalBeginLumiSignal_
Definition: ActivityRegistry.h:969
edm::ActivityRegistry::postESModuleSignal_
PostESModule postESModuleSignal_
Definition: ActivityRegistry.h:532
edm::ActivityRegistry::postModuleBeginJobSignal_
PostModuleBeginJob postModuleBeginJobSignal_
Definition: ActivityRegistry.h:738
edm::ActivityRegistry::preModuleGlobalBeginRunSignal_
PreModuleGlobalBeginRun preModuleGlobalBeginRunSignal_
Definition: ActivityRegistry.h:934
edm::ActivityRegistry::postModuleEndStreamSignal_
PostModuleEndStream postModuleEndStreamSignal_
Definition: ActivityRegistry.h:266
edm::ActivityRegistry::preModuleStreamEndLumiSignal_
PreModuleStreamEndLumi preModuleStreamEndLumiSignal_
Definition: ActivityRegistry.h:877
edm::ActivityRegistry::postModuleGlobalEndLumiSignal_
PostModuleGlobalEndLumi postModuleGlobalEndLumiSignal_
Definition: ActivityRegistry.h:983
edm::ActivityRegistry::postModuleWriteLumiSignal_
PostModuleWriteLumi postModuleWriteLumiSignal_
Definition: ActivityRegistry.h:1023
edm::ActivityRegistry::preModuleEndJobSignal_
PreModuleEndJob preModuleEndJobSignal_
Definition: ActivityRegistry.h:746
edm::ActivityRegistry::preStreamEndLumiSignal_
PreStreamEndLumi preStreamEndLumiSignal_
Definition: ActivityRegistry.h:444
groupFilesInBlocks.reverse
reverse
Definition: groupFilesInBlocks.py:131
edm::ActivityRegistry::postPathEventSignal_
PostPathEvent postPathEventSignal_
Definition: ActivityRegistry.h:475
edm::ActivityRegistry::postModuleStreamEndLumiSignal_
PostModuleStreamEndLumi postModuleStreamEndLumiSignal_
Definition: ActivityRegistry.h:884
ActivityRegistry.h
edm::ActivityRegistry::postModuleWriteRunSignal_
PostModuleWriteRun postModuleWriteRunSignal_
Definition: ActivityRegistry.h:1009
edm::ActivityRegistry::postAccessInputProcessBlockSignal_
PostAccessInputProcessBlock postAccessInputProcessBlockSignal_
Definition: ActivityRegistry.h:294
edm::ActivityRegistry::preSourceLumiSignal_
PreSourceLumi preSourceLumiSignal_
Definition: ActivityRegistry.h:195
edm::signalslot::throwObsoleteSignalException
void throwObsoleteSignalException()
Definition: ActivityRegistry.cc:85
edm::ActivityRegistry::postWriteProcessBlockSignal_
PostWriteProcessBlock postWriteProcessBlockSignal_
Definition: ActivityRegistry.h:347
edm::ActivityRegistry::postGlobalWriteLumiSignal_
PostGlobalEndLumi postGlobalWriteLumiSignal_
Definition: ActivityRegistry.h:423
edm::ActivityRegistry::preModuleAccessInputProcessBlockSignal_
PreModuleAccessInputProcessBlock preModuleAccessInputProcessBlockSignal_
Definition: ActivityRegistry.h:905
edm::ActivityRegistry::preModuleEventAcquireSignal_
PreModuleEventAcquire preModuleEventAcquireSignal_
Definition: ActivityRegistry.h:788
edm::ActivityRegistry::connectLocals
void connectLocals(ActivityRegistry &iOther)
Definition: ActivityRegistry.cc:122
edm::ActivityRegistry::postModuleEventAcquireSignal_
PostModuleEventAcquire postModuleEventAcquireSignal_
Definition: ActivityRegistry.h:796
edm::ActivityRegistry::preModuleStreamBeginRunSignal_
PreModuleStreamBeginRun preModuleStreamBeginRunSignal_
Definition: ActivityRegistry.h:835
edm::ActivityRegistry::postOpenFileSignal_
PostOpenFile postOpenFileSignal_
Definition: ActivityRegistry.h:226
edm::ActivityRegistry::preSourceRunSignal_
PreSourceRun preSourceRunSignal_
Definition: ActivityRegistry.h:207
edm::ActivityRegistry::postGlobalBeginLumiSignal_
PostGlobalBeginLumi postGlobalBeginLumiSignal_
Definition: ActivityRegistry.h:397
edm::ActivityRegistry::preModuleEventSignal_
PreModuleEvent preModuleEventSignal_
Definition: ActivityRegistry.h:776
edm::ActivityRegistry
Definition: ActivityRegistry.h:134
edm::ActivityRegistry::preGlobalEndRunSignal_
PreGlobalEndRun preGlobalEndRunSignal_
Definition: ActivityRegistry.h:328
edm::ActivityRegistry::postModuleConstructionSignal_
PostModuleConstruction postModuleConstructionSignal_
Definition: ActivityRegistry.h:705
edm::ActivityRegistry::preModuleEventPrefetchingSignal_
PreModuleEventPrefetching preModuleEventPrefetchingSignal_
Definition: ActivityRegistry.h:760
edm::ActivityRegistry::preBeginProcessBlockSignal_
PreBeginProcessBlock preBeginProcessBlockSignal_
Definition: ActivityRegistry.h:273
edm::ActivityRegistry::postModuleBeginStreamSignal_
PostModuleBeginStream postModuleBeginStreamSignal_
Definition: ActivityRegistry.h:252
edm::ActivityRegistry::postEndJobSignal_
PostEndJob postEndJobSignal_
signal is emitted after all modules have gotten their endJob called
Definition: ActivityRegistry.h:169
edm::ActivityRegistry::connectToSubProcess
void connectToSubProcess(ActivityRegistry &iOther)
Definition: ActivityRegistry.cc:305
edm::ActivityRegistry::postModuleGlobalBeginRunSignal_
PostModuleGlobalBeginRun postModuleGlobalBeginRunSignal_
Definition: ActivityRegistry.h:941
edm::ActivityRegistry::postModuleEventDelayedGetSignal_
PostModuleEventDelayedGet postModuleEventDelayedGetSignal_
Definition: ActivityRegistry.h:812
edm::ActivityRegistry::preAccessInputProcessBlockSignal_
PreAccessInputProcessBlock preAccessInputProcessBlockSignal_
Definition: ActivityRegistry.h:287
edm::ActivityRegistry::postBeginProcessBlockSignal_
PostBeginProcessBlock postBeginProcessBlockSignal_
Definition: ActivityRegistry.h:280
edm::ActivityRegistry::postSourceRunSignal_
PostSourceRun postSourceRunSignal_
Definition: ActivityRegistry.h:213
edm::ActivityRegistry::preModuleGlobalEndRunSignal_
PreModuleGlobalEndRun preModuleGlobalEndRunSignal_
Definition: ActivityRegistry.h:948
edm::ActivityRegistry::postEventReadFromSourceSignal_
PostEventReadFromSource postEventReadFromSourceSignal_
Definition: ActivityRegistry.h:828
edm::ActivityRegistry::postModuleEventSignal_
PostModuleEvent postModuleEventSignal_
Definition: ActivityRegistry.h:782
edm::ActivityRegistry::postModuleWriteProcessBlockSignal_
PostModuleWriteProcessBlock postModuleWriteProcessBlockSignal_
Definition: ActivityRegistry.h:997
edm::ActivityRegistry::preBeginJobSignal_
PreBeginJob preBeginJobSignal_
signal is emitted before all modules have gotten their beginJob called
Definition: ActivityRegistry.h:149
edm::ActivityRegistry::preSourceConstructionSignal_
PreSourceConstruction preSourceConstructionSignal_
Definition: ActivityRegistry.h:1111
edm::ActivityRegistry::postSourceLumiSignal_
PostSourceLumi postSourceLumiSignal_
Definition: ActivityRegistry.h:201
edm::ActivityRegistry::postCloseFileSignal_
PostCloseFile postCloseFileSignal_
Definition: ActivityRegistry.h:240
edm::ActivityRegistry::preEndProcessBlockSignal_
PreEndProcessBlock preEndProcessBlockSignal_
Definition: ActivityRegistry.h:301
edm::ActivityRegistry::preStreamBeginRunSignal_
PreStreamBeginRun preStreamBeginRunSignal_
Definition: ActivityRegistry.h:366
edm::ActivityRegistry::postESModulePrefetchingSignal_
PostESModulePrefetching postESModulePrefetchingSignal_
Definition: ActivityRegistry.h:518
edm::ActivityRegistry::copySlotsFrom
void copySlotsFrom(ActivityRegistry &iOther)
Definition: ActivityRegistry.cc:310
edm::ActivityRegistry::preGlobalBeginLumiSignal_
PreGlobalBeginLumi preGlobalBeginLumiSignal_
Definition: ActivityRegistry.h:390
edm::ActivityRegistry::prePathEventSignal_
PrePathEvent prePathEventSignal_
Definition: ActivityRegistry.h:469
edm::ActivityRegistry::postGlobalBeginRunSignal_
PostGlobalBeginRun postGlobalBeginRunSignal_
Definition: ActivityRegistry.h:321
edm::ActivityRegistry::preModuleStreamEndRunSignal_
PreModuleStreamEndRun preModuleStreamEndRunSignal_
Definition: ActivityRegistry.h:849
edm::ActivityRegistry::postBeginJobSignal_
PostBeginJob postBeginJobSignal_
signal is emitted after all modules have gotten their beginJob called
Definition: ActivityRegistry.h:156
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:316
edm::ActivityRegistry::preModuleEventDelayedGetSignal_
PreModuleEventDelayedGet preModuleEventDelayedGetSignal_
Definition: ActivityRegistry.h:804
edm::ActivityRegistry::preModuleWriteLumiSignal_
PreModuleWriteLumi preModuleWriteLumiSignal_
Definition: ActivityRegistry.h:1016
edm::ActivityRegistry::postEventSignal_
PostEvent postEventSignal_
signal is emitted after all modules have finished processing the Event
Definition: ActivityRegistry.h:463
edm::ActivityRegistry::preModuleEndProcessBlockSignal_
PreModuleEndProcessBlock preModuleEndProcessBlockSignal_
Definition: ActivityRegistry.h:920
edm::ActivityRegistry::postGlobalEndLumiSignal_
PostGlobalEndLumi postGlobalEndLumiSignal_
Definition: ActivityRegistry.h:409
edm::ActivityRegistry::postSourceConstructionSignal_
PostSourceConstruction postSourceConstructionSignal_
Definition: ActivityRegistry.h:1120
edm::ActivityRegistry::connect
void connect(ActivityRegistry &iOther)
forwards our signals to slots connected to iOther
Definition: ActivityRegistry.cc:300
edm::ActivityRegistry::postStreamEndLumiSignal_
PostStreamEndLumi postStreamEndLumiSignal_
Definition: ActivityRegistry.h:449
edm::ActivityRegistry::postModuleGlobalEndRunSignal_
PostModuleGlobalEndRun postModuleGlobalEndRunSignal_
Definition: ActivityRegistry.h:955
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:457
edm::ActivityRegistry::postStreamEndRunSignal_
PostStreamEndRun postStreamEndRunSignal_
Definition: ActivityRegistry.h:383
edm::ActivityRegistry::preModuleConstructionSignal_
PreModuleConstruction preModuleConstructionSignal_
Definition: ActivityRegistry.h:696
edm::ActivityRegistry::preCloseFileSignal_
PreCloseFile preCloseFileSignal_
Definition: ActivityRegistry.h:234
edm::ActivityRegistry::preModuleEndStreamSignal_
PreModuleEndStream preModuleEndStreamSignal_
Definition: ActivityRegistry.h:259
T
long double T
Definition: Basic3DVectorLD.h:48
edm::ActivityRegistry::preModuleBeginStreamSignal_
PreModuleBeginStream preModuleBeginStreamSignal_
Definition: ActivityRegistry.h:245
Exception
Definition: hltDiff.cc:245
edm::ActivityRegistry::postModuleStreamBeginLumiSignal_
PostModuleStreamBeginLumi postModuleStreamBeginLumiSignal_
Definition: ActivityRegistry.h:870
edm::ActivityRegistry::preallocateSignal_
Preallocate preallocateSignal_
signal is emitted before beginJob
Definition: ActivityRegistry.h:143
edm::ActivityRegistry::postGlobalEndRunSignal_
PostGlobalEndRun postGlobalEndRunSignal_
Definition: ActivityRegistry.h:333
edm::ActivityRegistry::postSourceSignal_
PostSourceEvent postSourceSignal_
Definition: ActivityRegistry.h:189
edm::ActivityRegistry::preEventReadFromSourceSignal_
PreEventReadFromSource preEventReadFromSourceSignal_
Definition: ActivityRegistry.h:820
Exception.h
edm::ActivityRegistry::preModuleWriteProcessBlockSignal_
PreModuleWriteProcessBlock preModuleWriteProcessBlockSignal_
Definition: ActivityRegistry.h:990
edm::ActivityRegistry::preGlobalWriteRunSignal_
PreGlobalWriteRun preGlobalWriteRunSignal_
Definition: ActivityRegistry.h:354
edm::ActivityRegistry::preStreamEndRunSignal_
PreStreamEndRun preStreamEndRunSignal_
Definition: ActivityRegistry.h:378
edm::ActivityRegistry::preModuleDestructionSignal_
PreModuleDestruction preModuleDestructionSignal_
Definition: ActivityRegistry.h:714
edm::ActivityRegistry::postModuleStreamEndRunSignal_
PostModuleStreamEndRun postModuleStreamEndRunSignal_
Definition: ActivityRegistry.h:856
edm::ActivityRegistry::postModuleEventPrefetchingSignal_
PostModuleEventPrefetching postModuleEventPrefetchingSignal_
Definition: ActivityRegistry.h:768
edm::signalslot::Signal::connect
void connect(U iFunc)
Definition: Signal.h:64
edm::ActivityRegistry::preStreamEarlyTerminationSignal_
PreStreamEarlyTermination preStreamEarlyTerminationSignal_
Definition: ActivityRegistry.h:482
edm::ActivityRegistry::preModuleBeginJobSignal_
PreModuleBeginJob preModuleBeginJobSignal_
Definition: ActivityRegistry.h:732
edm::ActivityRegistry::postModuleEndProcessBlockSignal_
PostModuleEndProcessBlock postModuleEndProcessBlockSignal_
Definition: ActivityRegistry.h:927
edm::ActivityRegistry::preWriteProcessBlockSignal_
PreWriteProcessBlock preWriteProcessBlockSignal_
Definition: ActivityRegistry.h:340
edm::ActivityRegistry::connectGlobals
void connectGlobals(ActivityRegistry &iOther)
Definition: ActivityRegistry.cc:91
edm::ActivityRegistry::postStreamBeginLumiSignal_
PostStreamBeginLumi postStreamBeginLumiSignal_
Definition: ActivityRegistry.h:437
edm::ActivityRegistry::postEndProcessBlockSignal_
PostEndProcessBlock postEndProcessBlockSignal_
Definition: ActivityRegistry.h:308
edm::ActivityRegistry::postModuleEndJobSignal_
PostModuleEndJob postModuleEndJobSignal_
Definition: ActivityRegistry.h:752
edm::ActivityRegistry::postModuleDestructionSignal_
PostModuleDestruction postModuleDestructionSignal_
Definition: ActivityRegistry.h:723
edm::ActivityRegistry::preModuleGlobalBeginLumiSignal_
PreModuleGlobalBeginLumi preModuleGlobalBeginLumiSignal_
Definition: ActivityRegistry.h:962
edm::ActivityRegistry::preGlobalEarlyTerminationSignal_
PreGlobalEarlyTermination preGlobalEarlyTerminationSignal_
Definition: ActivityRegistry.h:491