6 #include <TEfficiency.h>
21 , m_plane_name(plane_name)
45 m_evt = findNode::getClass<SQEvent >(topNode,
"SQEvent");
46 m_hit_vec = findNode::getClass<SQHitVector>(topNode,
"SQHitVector");
51 if (m_plane_id <= 0) {
52 cout <<
"!!ERROR!! " <<
Name() <<
" is not given a proper plane name.\n";
57 m_file_out =
new TFile(TString::Format(
"output_%s.root",
Name().c_str()).Data(),
"RECREATE");
60 TString::Format(
"h1_nhit_%d_%s", m_plane_id, m_plane_name.c_str()).Data(),
61 TString::Format(
"#%d: %s;N of hits/plane/event;Hit count", m_plane_id, m_plane_name.c_str()).Data(),
62 m_n_ele+1, -0.5, m_n_ele+0.5);
65 TString::Format(
"h1_ele_%d_%s", m_plane_id, m_plane_name.c_str()).Data(),
66 TString::Format(
"#%d: %s;Element ID;Hit count", m_plane_id, m_plane_name.c_str()).Data(),
67 m_n_ele, 0.5, m_n_ele+0.5);
71 TString::Format(
"h1_pos_%d_%s", m_plane_id, m_plane_name.c_str()).Data(),
72 TString::Format(
"#%d: %s;Position (cm);Hit count", m_plane_id, m_plane_name.c_str()).Data(),
73 60, -0.6*plane_width, 0.6*plane_width);
75 const double DT = 20/9.0;
77 const double T0 = 225.5*DT;
78 const double T1 = 675.5*DT;
80 TString::Format(
"h1_time_%d_%s", m_plane_id, m_plane_name.c_str()).Data(),
81 TString::Format(
"#%d: %s;tdcTime;Hit count", m_plane_id, m_plane_name.c_str()).Data(),
85 TString::Format(
"h1_dist_%d_%s", m_plane_id, m_plane_name.c_str()).Data(),
86 TString::Format(
"#%d: %s;Drift dist;Hit count", m_plane_id, m_plane_name.c_str()).Data(),
100 m_n_hit_all += hv->size();
102 m_h1_nhit->Fill(hv->size());
104 int ele = (*it)->get_element_id();
105 double pos = (*it)->get_pos();
106 double time = (*it)->get_tdc_time();
107 double dist = (*it)->get_drift_distance();
108 m_h1_ele ->Fill(ele );
109 m_h1_pos ->Fill(pos );
110 m_h1_time->Fill(time);
111 m_h1_dist->Fill(dist);
119 std::ofstream ofs(TString::Format(
"output_%s.txt",
Name().c_str()).Data());
120 ofs <<
"N of events = " << m_n_evt_all <<
"\n"
121 <<
"N of hits = " << m_n_hit_all <<
"\n";
int InitRun(PHCompositeNode *topNode)
int process_event(PHCompositeNode *topNode)
AnaChamPlane(const std::string &plane_name)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int Init(PHCompositeNode *topNode)
virtual const std::string Name() const
Returns the name of this module.
User interface class about the geometry of detector planes.
int getDetectorID(const std::string &detectorName) const
Get the plane position.
static GeomSvc * instance()
singlton instance
int getPlaneNElements(int detectorID) const
double getPlaneScaleX(int detectorID) const
double getCellWidth(int detectorID) const
std::vector< SQHit * >::const_iterator ConstIter
SQHitVector * FindHits(const SQHitVector *vec_in, const std::string det_name, const bool in_time=false)
Extract a set of hits that are of the given detector (det_name).