Class Reference for E1039 Core & Analysis Software
CalibEvtQual.cc
Go to the documentation of this file.
5 #include <phool/PHNodeIterator.h>
6 #include <phool/PHIODataNode.h>
7 #include <phool/getClass.h>
8 #include "CalibEvtQual.h"
9 using namespace std;
10 
11 CalibEvtQual::CalibEvtQual(const std::string& name) : SubsysReco(name)
12 {
13  ;
14 }
15 
17 {
19 }
20 
22 {
24 }
25 
27 {
28  SQEvent* event = findNode::getClass<SQEvent>(topNode, "SQEvent");
29  if (! event) return Fun4AllReturnCodes::ABORTEVENT;
30 
31  SQHardEvent* hard_evt = findNode::getClass<SQHardEvent>(topNode, "SQHardEvent");
32  if (! hard_evt) return Fun4AllReturnCodes::ABORTEVENT;
33 
34  int run_id = event->get_run_id();
35  int qual = event->get_data_quality();
36 
37  int n_tdc; // expected number of tdc info
38  if (run_id >= 28664) n_tdc = 101; // seen in run 28700
39  else n_tdc = 108; // seen in run 28000
40  // This run range was confirmed by checking n_tdc in the following runs;
41  // * 101 in runs 28680, 28670, 28665, 28664
42  // * 108 in runs 28500, 28600, 28650, 28660, 28661
43  // Note that runs 28662 & 28663 contain no event.
44  // Is the change of n_tdc related to elog #17385??
45  // https://e906-gat6.fnal.gov:8080/SeaQuest/17385
46  if (hard_evt->get_n_board_taiwan() != n_tdc) qual |= ERR_N_TDC;
47  if (hard_evt->get_n_board_v1495 () < 2) qual |= ERR_N_V1495_0;
48  else if (hard_evt->get_n_board_v1495 () > 2) qual |= ERR_N_V1495_2;
49  if (hard_evt->get_n_board_trig_bit () < 1) qual |= ERR_N_TRIGB_0;
50  else if (hard_evt->get_n_board_trig_bit () > 1) qual |= ERR_N_TRIGB_2;
51  if (hard_evt->get_n_board_trig_count () < 1) qual |= ERR_N_TRIGC_0;
52  else if (hard_evt->get_n_board_trig_count () > 1) qual |= ERR_N_TRIGC_2;
53  if (hard_evt->get_n_board_qie () < 1) qual |= ERR_N_QIE_0;
54  else if (hard_evt->get_n_board_qie () > 1) qual |= ERR_N_QIE_2;
55 
56  event->set_data_quality(qual);
57  //if (qual != 0) {
58  // cout << " N! " << evt_id << " | " << ed->n_qie << " " << ed->n_v1495 << " " << ed->n_tdc << " " << ed->n_trig_b << " " << ed->n_trig_c << endl;
59  // }
60  //}
61 
63 }
64 
66 {
68 }
69 
70 void CalibEvtQual::PrintEvent(SQEvent* evt, SQHardEvent* hevt)
71 {
72  cout << "SQEvent: "
73  << " " << evt->get_run_id ()
74  << " " << evt->get_spill_id ()
75  << " " << evt->get_event_id ()
76  << " " << evt->get_data_quality ()
77  << " " << hevt->get_coda_event_id()
78  << " " << hevt->get_vme_time ()
79  << "\n";
80 }
int process_event(PHCompositeNode *topNode)
Definition: CalibEvtQual.cc:26
int InitRun(PHCompositeNode *topNode)
Definition: CalibEvtQual.cc:21
CalibEvtQual(const std::string &name="CalibEvtQual")
Definition: CalibEvtQual.cc:11
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: CalibEvtQual.cc:65
int Init(PHCompositeNode *topNode)
Definition: CalibEvtQual.cc:16
An SQ interface class to hold one event header.
Definition: SQEvent.h:17
virtual int get_run_id() const =0
Return the run ID.
virtual int get_data_quality() const =0
Return the data-quality bits.
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.
An SQ interface class to hold one hardware-related event info.
Definition: SQHardEvent.h:7
virtual short get_n_board_taiwan() const =0
Return the number of Taiwan-TDC boards read out.
virtual short get_n_board_qie() const =0
Return the number of QIE boards read out.
virtual short get_n_board_v1495() const =0
Return the number of V1495 boards read out.
virtual short get_n_board_trig_count() const =0
Return the number of trigger-count boards read out.
virtual int get_vme_time() const =0
Return the VME time.
virtual short get_n_board_trig_bit() const =0
Return the number of trigger-bit boards read out.
virtual int get_coda_event_id() const =0
Return the Coda-event ID, which is unique per run.