PlaneDiffuser.h
Go to the documentation of this file.
1 /**
2  A PlaneDiffuser will return a queue of diffusions once enough
3  depositions have been collected such that the queue represents all
4  diffusions "close enough" to each wire. It implements a window
5  across the wire pitch.
6  */
7 
8 #ifndef WIRECELL_PLANEDIFFUSER
9 #define WIRECELL_PLANEDIFFUSER
10 
11 namespace WireCell {
12 
13  class PlaneDiffuser : public IDiffuser, public IConfigurable {
14  public:
15 
16  };
17 
18 }
19 
20 #endif
21 
Definition: Main.h:22