CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
TriggerTimingReport.h
Go to the documentation of this file.
1 #ifndef FWCore_Framework_TriggerTimingReport_h
2 #define FWCore_Framework_TriggerTimingReport_h
3 
4 /*----------------------------------------------------------------------
5 
6 TriggerTimingReport: This struct contains all the information relevant to
7 reporting on the timing of the trigger.
8 
9 
10 ----------------------------------------------------------------------*/
11 
12 #include <string>
13 #include <vector>
14 
15 namespace edm {
16 
18  {
19  int totalEvents = 0;
20  double cpuTime = 0.;
21  double realTime =0.;
22  };
23 
25  {
26  int timesVisited = 0;
27  double cpuTime = 0.;
28  double realTime =0.;
29 
31  };
32 
33 
35  {
36  int bitPosition = 0;
37  int timesRun = 0;
38  double cpuTime = 0.;
39  double realTime =0.;
40 
42  std::vector<ModuleInPathTimingSummary> moduleInPathSummaries;
43  };
44 
46  {
47  int timesVisited = 0;
48  int timesRun = 0;
49  double cpuTime = 0.;
50  double realTime =0.;
51 
53  };
54 
55 
57  {
59  std::vector<PathTimingSummary> trigPathSummaries;
60  std::vector<PathTimingSummary> endPathSummaries;
61  std::vector<WorkerTimingSummary> workerSummaries;
62  };
63 
64 }
65 #endif
std::vector< PathTimingSummary > endPathSummaries
std::vector< ModuleInPathTimingSummary > moduleInPathSummaries
EventTimingSummary eventSummary
std::vector< PathTimingSummary > trigPathSummaries
std::vector< WorkerTimingSummary > workerSummaries