StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
DSMAlgo.hh
1 //
2 // Pibero Djawotho <pibero@comp.tamu.edu>
3 // Texas A&M University Cyclotron Institute
4 // 1 Jan 2009
5 //
6 
7 #ifndef DSM_ALGO_HH
8 #define DSM_ALGO_HH
9 
10 struct DSM;
11 
12 struct DSMAlgo {
13  virtual void operator()(DSM& dsm) = 0;
14  virtual ~DSMAlgo() {}
15 };
16 
17 #endif // DSM_ALGO_HH
Definition: DSM.hh:16