ProcessingFrame.h
Go to the documentation of this file.
1 #ifndef art_Framework_Core_ProcessingFrame_h
2 #define art_Framework_Core_ProcessingFrame_h
3 
6 
7 namespace art {
9  public:
10  explicit ProcessingFrame(ScheduleID const sid) : scheduleID_{sid} {}
11 
12  template <typename T>
14  serviceHandle() const
15  {
16  return ServiceHandle<T>{};
17  }
18 
19  auto
20  scheduleID() const
21  {
22  return scheduleID_;
23  }
24 
25  private:
27  };
28 }
29 
30 #endif /* art_Framework_Core_ProcessingFrame_h */
31 
32 // Local Variables:
33 // mode: c++
34 // End:
auto scheduleID() const
ServiceHandle< T > serviceHandle() const
ProcessingFrame(ScheduleID const sid)
ScheduleID const scheduleID_