CMS 3D CMS Logo

All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
GlobalAlgBlk.h
Go to the documentation of this file.
1 #ifndef L1Trigger_GlobalAlgBlk_h
2 #define L1Trigger_GlobalAlgBlk_h
3 
18 // system include files
19 #include <vector>
20 #include <iostream>
21 #include <iomanip>
22 
23 // user include files
26 //#include "DataFormats/L1GlobalTrigger/interface/L1GlobalTriggerReadoutSetup.h"
27 
28 // forward declarations
29 
30 
33 
34 // class interface
35 
37 {
38 
39 
40 
41 public:
43  GlobalAlgBlk(); // empty constructor, all members set to zero;
44 
45  GlobalAlgBlk(int orbitNr, int bxNr, int bxInEvent);
46 
48  virtual ~GlobalAlgBlk();
49 
50 
51 public:
52  const static unsigned int maxPhysicsTriggers = 512;
53 
55  void setL1MenuUUID(int uuid) { m_orbitNr = uuid; }
56  void setL1FirmwareUUID(int fuuid) { m_bxNr = fuuid; }
57  void setbxInEventNr(int bxNr) { m_bxInEvent = bxNr; }
58  void setFinalORVeto(bool fOR) { m_finalORVeto = fOR; }
59  void setFinalORPreVeto(bool fOR){ m_finalORPreVeto = fOR; }
60  void setFinalOR(bool fOR) { m_finalOR = fOR; }
61  void setPreScColumn(int psC) { m_preScColumn = psC; }
62 
64  inline const int getL1MenuUUID() const { return m_orbitNr; }
65  inline const int getL1FirmwareUUID() const { return m_bxNr; }
66  inline const int getbxInEventNr() const { return m_bxInEvent; }
67  inline const bool getFinalOR() const { return m_finalOR; }
68  inline const bool getFinalORPreVeto() const { return m_finalORPreVeto; };
69  inline const bool getFinalORVeto() const { return m_finalORVeto; }
70  inline const int getPreScColumn() const { return m_preScColumn; }
71 
75 
77  void setAlgoDecisionInitial(unsigned int bit, bool val);
78  void setAlgoDecisionInterm(unsigned int bit, bool val);
79  void setAlgoDecisionFinal(unsigned int bit, bool val);
80 
82  bool getAlgoDecisionInitial(unsigned int bit) const;
83  bool getAlgoDecisionInterm(unsigned int bit) const;
84  bool getAlgoDecisionFinal(unsigned int bit) const;
85 
87  void reset();
88 
90  void print(std::ostream& myCout) const;
91 
92 
93 private:
94 
95  // where noted member data has been re-interpreted, to keep persistant data the same, as these features were added late in release cycle.
96 
98  int m_orbitNr;
99 
101  int m_bxNr;
102 
105 
106  // finalOR
107  bool m_finalOR;
110 
111  //Prescale Column
113 
114 
115  std::vector<bool> m_algoDecisionInitial;
116  std::vector<bool> m_algoDecisionPreScaled; // -> Interm
117  std::vector<bool> m_algoDecisionFinal;
118 
119 
120 
121 };
122 
123 #endif /*L1Trigger_GlobalAlgBlk_h*/
const int getL1MenuUUID() const
get simple members
Definition: GlobalAlgBlk.h:64
void setL1MenuUUID(int uuid)
set simple members
Definition: GlobalAlgBlk.h:55
const int getbxInEventNr() const
Definition: GlobalAlgBlk.h:66
std::vector< bool > m_algoDecisionInitial
Definition: GlobalAlgBlk.h:115
void copyIntermToFinal()
Definition: GlobalAlgBlk.h:74
void setFinalORPreVeto(bool fOR)
Definition: GlobalAlgBlk.h:59
void setAlgoDecisionInitial(unsigned int bit, bool val)
Set decision bits.
Definition: GlobalAlgBlk.cc:88
void setbxInEventNr(int bxNr)
Definition: GlobalAlgBlk.h:57
GlobalAlgBlk()
constructors
Definition: GlobalAlgBlk.cc:53
bool m_finalORPreVeto
Definition: GlobalAlgBlk.h:108
BXVector< GlobalAlgBlk > GlobalAlgBlkBxCollection
Definition: GlobalAlgBlk.h:31
bool getAlgoDecisionFinal(unsigned int bit) const
void copyInitialToInterm()
Copy vectors words.
Definition: GlobalAlgBlk.h:73
int m_bxNr
bunch cross number of the actual bx -&gt; L1FirmwareUUID
Definition: GlobalAlgBlk.h:101
const bool getFinalORVeto() const
Definition: GlobalAlgBlk.h:69
bool getAlgoDecisionInitial(unsigned int bit) const
Get decision bits.
const bool getFinalORPreVeto() const
Definition: GlobalAlgBlk.h:68
const int getL1FirmwareUUID() const
Definition: GlobalAlgBlk.h:65
static const unsigned int maxPhysicsTriggers
Definition: GlobalAlgBlk.h:52
const bool getFinalOR() const
Definition: GlobalAlgBlk.h:67
void print(std::ostream &myCout) const
pretty print the content of a GlobalAlgBlk
void reset()
reset the content of a GlobalAlgBlk
const int getPreScColumn() const
Definition: GlobalAlgBlk.h:70
virtual ~GlobalAlgBlk()
destructor
Definition: GlobalAlgBlk.cc:80
bool getAlgoDecisionInterm(unsigned int bit) const
void setAlgoDecisionInterm(unsigned int bit, bool val)
void setFinalOR(bool fOR)
Definition: GlobalAlgBlk.h:60
void setFinalORVeto(bool fOR)
Definition: GlobalAlgBlk.h:58
int m_orbitNr
orbit number -&gt; L1MenuUUID
Definition: GlobalAlgBlk.h:98
void setL1FirmwareUUID(int fuuid)
Definition: GlobalAlgBlk.h:56
std::vector< bool > m_algoDecisionFinal
Definition: GlobalAlgBlk.h:117
int m_bxInEvent
bunch cross in the GT event record (E,F,0,1,2)
Definition: GlobalAlgBlk.h:104
std::vector< bool > m_algoDecisionPreScaled
Definition: GlobalAlgBlk.h:116
void setPreScColumn(int psC)
Definition: GlobalAlgBlk.h:61
bool m_finalORVeto
Definition: GlobalAlgBlk.h:109
void setAlgoDecisionFinal(unsigned int bit, bool val)