Hall-D Software  alpha
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
hd_eventfilter.cc
Go to the documentation of this file.
1 // Author: David Lawrence June 25, 2004
2 //
3 //
4 // hd_ana.cc
5 //
6 
7 #include "MyProcessor.h"
8 #include <DANA/DApplication.h>
9 
10 //-----------
11 // main
12 //-----------
13 int main(int narg, char *argv[])
14 {
15  // Instantiate our event processor
17 
18  // Instantiate an event loop object
19  DApplication app(narg, argv);
20 
21  // Run though all events, calling our event processor's methods
22  app.Run(&myproc, 1);
23 
24  return 0;
25 }
26 
MyProcessor * myproc
Definition: hdview2.cc:17
int main(int argc, char *argv[])
Definition: gendoc.cc:6