00001 #include "PhysicsTools/ParallelAnalysis/interface/TrackTSelector.h" 00002 #include <iostream> 00003 #include <TCanvas.h> 00004 #include <TH1.h> 00005 using namespace std; 00006 using namespace examples; 00007 00008 TrackTSelector::TrackTSelector() { 00009 cout << ">> constructing TrackTSelector" << endl; 00010 } 00011 00012 void TrackTSelector::begin( TList * & ) { 00013 cout << ">> nothing to be done at begin" << endl; 00014 } 00015 00016 void TrackTSelector::terminate( TList & out ) { 00017 cout << ">> terminating" << endl; 00018 TrackAnalysisAlgorithm::terminate( out ); 00019 }