LArSoft  v07_13_02
Liquid Argon Software toolkit - http://larsoft.org/
WorkerInPath.cc
Go to the documentation of this file.
1 // ======================================================================
2 //
3 // WorkerInPath: A wrapper around a Worker, so that statistics can be
4 // managed per path. A Path holds Workers as these things.
5 //
6 // ======================================================================
7 
9 
10 using art::WorkerInPath;
11 
12 WorkerInPath::WorkerInPath(cet::exempt_ptr<Worker> w,
13  FilterAction const theFilterAction)
14  : filterAction_{theFilterAction}, worker_{w}
15 {}
16 
17 WorkerInPath::WorkerInPath(cet::exempt_ptr<Worker> w) : worker_{w} {}
WorkerInPath(cet::exempt_ptr< Worker >)
Definition: WorkerInPath.cc:17
Float_t w
Definition: plot.C:23
cet::exempt_ptr< Worker > worker_
Definition: WorkerInPath.h:91