QwAnalysis
QwTrackingAnalyzer.cc
Go to the documentation of this file.
1 #include "QwTrackingAnalyzer.h"
2 
3 #include <cstdlib>
4 
5 // Qweak Tracking headers
6 #include "QwTypes.h"
7 #include "QwTrackingTreeRegion.h"
8 
9 // Qweak tracking worker
10 #include "QwTrackingWorker.h"
11 
13 {
14  // Create the tracking worker
15  //fTrackingWorker = new QwTrackingWorker("trackingworker");
16 
17  // Test histogram
18  fHisto1 = new TH1F("fHisto1", "fHisto1", 100, 0.0, 100000.0);
19 }
20 
22 {
23  //delete fTrackingWorker;
24  delete fHisto1;
25 }
26 
28 {
29 }
Controls all the routines involved in finding tracks in an event.
QwTrackingAnalyzer(const char *)