Class Reference for E1039 Core & Analysis Software
Fun4AllTriggerDstOutputManager.cc
Go to the documentation of this file.
1 #include <sstream>
2 //#include <TSystem.h>
3 //#include <TSQLServer.h>
5 #include <phool/getClass.h>
7 //#include <db_svc/DbSvc.h>
8 //#include <UtilAna/UtilOnline.h>
10 using namespace std;
11 
12 Fun4AllTriggerDstOutputManager::Fun4AllTriggerDstOutputManager(const string &myname, const string &filename)
13  : Fun4AllDstOutputManager(myname, filename)
14  , m_trig_mask(0)
15 {
16  ;
17 }
18 
20 {
21  ;
22 }
23 
24 void Fun4AllTriggerDstOutputManager::SetTriggerMask(const int fpga_mask, const int nim_mask)
25 {
26  m_trig_mask = (fpga_mask << SQEvent::MATRIX1) | (nim_mask << SQEvent::NIM1);
27 }
28 
29 void Fun4AllTriggerDstOutputManager::SetTriggerMask(const bool fpga1, const bool fpga2, const bool fpga3, const bool fpga4, const bool fpga5, const bool nim1, const bool nim2, const bool nim3, const bool nim4, const bool nim5)
30 {
31  m_trig_mask = 0;
32  if (fpga1) m_trig_mask |= (0x1 << SQEvent::MATRIX1);
33  if (fpga2) m_trig_mask |= (0x1 << SQEvent::MATRIX2);
34  if (fpga3) m_trig_mask |= (0x1 << SQEvent::MATRIX3);
35  if (fpga4) m_trig_mask |= (0x1 << SQEvent::MATRIX4);
36  if (fpga5) m_trig_mask |= (0x1 << SQEvent::MATRIX5);
37  if (nim1 ) m_trig_mask |= (0x1 << SQEvent::NIM1);
38  if (nim2 ) m_trig_mask |= (0x1 << SQEvent::NIM2);
39  if (nim3 ) m_trig_mask |= (0x1 << SQEvent::NIM3);
40  if (nim4 ) m_trig_mask |= (0x1 << SQEvent::NIM4);
41  if (nim5 ) m_trig_mask |= (0x1 << SQEvent::NIM5);
42 }
43 
45 {
46  SQEvent* evt = findNode::getClass<SQEvent>(startNode, "SQEvent");
47  if (! evt) {
48  cout << PHWHERE << "SQEvent not found. Abort." << endl;
49  exit(1);
50  }
51  if (evt->get_trigger() & m_trig_mask) return Fun4AllDstOutputManager::Write(startNode);
52  return 0;
53 }
virtual int Write(PHCompositeNode *startNode)
write starting from given node
void SetTriggerMask(const int fpga_mask, const int nim_mask)
virtual int Write(PHCompositeNode *startNode)
write starting from given node
Fun4AllTriggerDstOutputManager(const std::string &myname, const std::string &filename)
An SQ interface class to hold one event header.
Definition: SQEvent.h:17
@ MATRIX2
Definition: SQEvent.h:28
@ NIM5
Definition: SQEvent.h:26
@ MATRIX1
Definition: SQEvent.h:27
@ NIM4
Definition: SQEvent.h:25
@ NIM2
Definition: SQEvent.h:23
@ NIM1
Definition: SQEvent.h:22
@ MATRIX3
Definition: SQEvent.h:29
@ NIM3
Definition: SQEvent.h:24
@ MATRIX4
Definition: SQEvent.h:30
@ MATRIX5
Definition: SQEvent.h:31
virtual bool get_trigger(const SQEvent::TriggerMask i) const =0
Return the trigger bit (fired or not) of the selected trigger channel.
#define PHWHERE
Definition: phool.h:23