Class Reference for E1039 Core & Analysis Software
AnaHardEvent.cc
Go to the documentation of this file.
1 #include <sstream>
2 #include <iomanip>
3 #include <TSystem.h>
4 #include <TFile.h>
5 #include <TH1D.h>
6 #include <TCanvas.h>
7 #include <interface_main/SQRun.h>
11 #include <phool/PHNodeIterator.h>
12 #include <phool/PHIODataNode.h>
13 #include <phool/getClass.h>
14 #include <geom_svc/GeomSvc.h>
15 //#include <UtilAna/UtilSQHit.h>
16 #include "AnaHardEvent.h"
17 using namespace std;
18 
19 AnaHardEvent::AnaHardEvent(const std::string& name)
20  : SubsysReco(name)
21  , m_file(0)
22  , m_h1_n_ttdc(0)
23 {
24  ;
25 }
26 
28 {
30 }
31 
33 {
37  m_evt = findNode::getClass<SQEvent >(topNode, "SQEvent");
38  m_hard_evt = findNode::getClass<SQHardEvent>(topNode, "SQHardEvent");
39  if (!m_evt || !m_hard_evt) return Fun4AllReturnCodes::ABORTEVENT;
40 
44  gSystem->mkdir("result", true);
45 
46  m_ofs.open("result/log.txt");
47 
48  m_file = new TFile("result/output.root", "RECREATE");
49  m_h1_n_ttdc = new TH1D("h1_n_ttdc", ";N of Taiwan TDCs", 100, -0.5, 99.5);
50 
52 }
53 
55 {
56  int sp_id = m_evt->get_spill_id();
57  int evt_id = m_evt->get_event_id();
58  //if (! m_evt->get_trigger(SQEvent::NIM2)) {
59  // return Fun4AllReturnCodes::EVENT_OK;
60  //}
61 
62  int coda_evt_id = m_hard_evt->get_coda_event_id();
63  short n_ttdc = m_hard_evt->get_n_board_taiwan();
64  //short n_v1495 = m_hard_evt->get_n_board_v1495();
65  if (evt_id == 27294) cout << "E " << evt_id << " C " << coda_evt_id << " S " << sp_id << " N " << n_ttdc << endl;
66 
67  m_h1_n_ttdc->Fill(n_ttdc);
68  if (n_ttdc != 82) m_ofs << evt_id << "\t" << coda_evt_id << "\t" << n_ttdc << "\n";
69 
71 }
72 
74 {
75  ostringstream oss;
76  TCanvas* c1 = new TCanvas("c1", "");
77  c1->SetGrid();
78 
79  m_h1_n_ttdc->Draw();
80  c1->SetLogy(true);
81  c1->SaveAs("result/h1_n_ttdc.png");
82 
83  delete c1;
84  m_file->cd();
85  m_file->Write();
86  m_file->Close();
87  m_ofs.close();
88 
90 }
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: AnaHardEvent.cc:73
int Init(PHCompositeNode *topNode)
Definition: AnaHardEvent.cc:27
int process_event(PHCompositeNode *topNode)
Definition: AnaHardEvent.cc:54
AnaHardEvent(const std::string &name="AnaHardEvent")
Definition: AnaHardEvent.cc:19
int InitRun(PHCompositeNode *topNode)
Definition: AnaHardEvent.cc:32
virtual int get_spill_id() const =0
Return the spill ID.
virtual int get_event_id() const =0
Return the event ID, which is unique per run.
virtual short get_n_board_taiwan() const =0
Return the number of Taiwan-TDC boards read out.
virtual int get_coda_event_id() const =0
Return the Coda-event ID, which is unique per run.