Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:12:16

0001 
0002 
0003 #include "FWCore/Framework/interface/WorkerInPath.h"
0004 
0005 namespace edm {
0006   WorkerInPath::WorkerInPath(Worker* w, FilterAction theFilterAction, unsigned int placeInPath, bool runConcurrently)
0007       : timesVisited_(),
0008         timesPassed_(),
0009         timesFailed_(),
0010         timesExcept_(),
0011         filterAction_(theFilterAction),
0012         worker_(w),
0013         placeInPathContext_(placeInPath),
0014         runConcurrently_(runConcurrently) {
0015     w->addedToPath();
0016   }
0017 
0018 }  // namespace edm