ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/TreeMod/src/HLTMod.cc
Revision: 1.16
Committed: Tue Sep 29 19:17:51 2009 UTC (15 years, 7 months ago) by loizides
Content type: text/plain
Branch: MAIN
Changes since 1.15: +14 -7 lines
Log Message:
Fix bug reported by Erik: A&&NotA==0

File Contents

# User Rev Content
1 loizides 1.16 // $Id: HLTMod.cc,v 1.15 2009/09/17 14:18:35 loizides Exp $
2 loizides 1.1
3     #include "MitAna/TreeMod/interface/HLTMod.h"
4     #include <TFile.h>
5     #include <TTree.h>
6     #include "MitAna/DataTree/interface/Names.h"
7     #include "MitAna/DataTree/interface/TriggerName.h"
8 loizides 1.11 #include "MitAna/DataTree/interface/TriggerMask.h"
9 loizides 1.1 #include "MitAna/DataTree/interface/TriggerObject.h"
10 loizides 1.11 #include "MitAna/DataTree/interface/TriggerObjectCol.h"
11 loizides 1.12 #include "MitAna/DataTree/interface/TriggerObjectsTable.h"
12 loizides 1.1
13     using namespace mithep;
14    
15     ClassImp(mithep::HLTMod)
16    
17     //--------------------------------------------------------------------------------------------------
18     HLTMod::HLTMod(const char *name, const char *title) :
19     BaseMod(name,title),
20     fAbort(kTRUE),
21 loizides 1.8 fPrintTable(kFALSE),
22 loizides 1.13 fIgnoreBits(kFALSE),
23     fObjMode(kHlt),
24 loizides 1.1 fBitsName(Names::gkHltBitBrn),
25 loizides 1.8 fMyObjsNamePub(Form("%sTrigObjs", name)),
26 loizides 1.1 fBits(0),
27     fMyTrgObjs(0),
28     fTriggers(0),
29     fTrigObjs(0),
30     fNEvents(0),
31     fNAcceped(0),
32     fNFailed(0)
33     {
34     // Constructor.
35     }
36    
37     //--------------------------------------------------------------------------------------------------
38     HLTMod::~HLTMod()
39     {
40     // Destructor.
41     }
42    
43     //--------------------------------------------------------------------------------------------------
44     void HLTMod::AddTrigger(const char *expr)
45     {
46     // Add trigger search pattern to the list of patters. Each element of the list is logically
47     // "ored". The given expression can contain several trigger names logically "anded" (using "&").
48     // A "!" infront of a trigger name negates the bit. For example, valid expressions are:
49     // "A", "!A", "A&B", "A&!B" or "A&B&C"
50    
51     string tname(expr);
52 loizides 1.5 fTrigNames.push_back(tname);
53 loizides 1.1 }
54    
55     //--------------------------------------------------------------------------------------------------
56     void HLTMod::AddTrigObjs(UInt_t tid)
57     {
58     // Add trigger objects corresponding to trigger id.
59    
60 loizides 1.6 const BitMask256 &ba = fTrigBitsAnd.at(tid);
61     const BitMask256 &bm = fTrigBitsCmp.at(tid);
62 loizides 1.1 for (UInt_t i=0; i<bm.Size(); ++i) {
63 loizides 1.13 if (ba.TestBit(i)==0 && !fIgnoreBits)
64 loizides 1.1 continue; // not an active trigger bit
65     if (fBitsDone.TestBit(i))
66     continue; // objects for this bit are already obtained
67     if (bm.TestBit(i)==0)
68     continue; // excluded trigger bit (ie a !trgname)
69    
70     const TList *list = fTrigObjs->GetList(i);
71 loizides 1.15 if (list) {
72     TIter iter(list->MakeIterator());
73     const TriggerObject *to = dynamic_cast<const TriggerObject*>(iter.Next());
74     while (to) {
75     if ( (fObjMode == kAll) ||
76     ((fObjMode==kHlt) && (to->IsHLT())) ||
77     ((fObjMode==kL1) && (to->IsL1())) )
78     fMyTrgObjs->Add(to);
79     to = dynamic_cast<const TriggerObject*>(iter.Next());
80     }
81 loizides 1.13 }
82 loizides 1.1 fBitsDone.SetBit(i);
83     }
84     }
85    
86     //--------------------------------------------------------------------------------------------------
87     void HLTMod::BeginRun()
88     {
89     // Get HLT tree and set branches. Compute bitmasks to be used when comparing to the HLT bits.
90    
91 loizides 1.6 fTrigBitsAnd.clear();
92     fTrigBitsCmp.clear();
93 loizides 1.1
94 loizides 1.2 if (fPrintTable)
95     fTriggers->Print();
96    
97 loizides 1.5 for (UInt_t i=0; i<fTrigNames.size(); ++i) {
98 loizides 1.1 BitMask256 tmask; //trigger mask
99     BitMask256 amask; //bitand mask
100 loizides 1.5 TString names(fTrigNames.at(i).c_str());
101 loizides 1.7
102 loizides 1.1 TObjArray *arr = names.Tokenize("&");
103     if (arr) {
104     for(Int_t j=0; j<arr->GetEntries(); j++){
105     TObjString *s = dynamic_cast<TObjString*>(arr->At(j));
106     if (!s)
107     continue;
108     const char *sptr = s->GetString().Data();
109     Bool_t invert = kFALSE;
110     if (sptr[0] == '!') {
111     invert = kTRUE; //inverted bit set
112     ++sptr;
113     }
114     const TriggerName *tn = fTriggers->Get(sptr);
115     if (!tn) {
116 loizides 1.7 Warning("BeginRun", "Trigger %s not found.", sptr);
117 loizides 1.1 continue;
118     }
119 loizides 1.16
120 loizides 1.1 UShort_t bit = tn->Id();
121 loizides 1.16 if (amask.TestBit(bit)) {
122     if (tmask.TestBit(bit)==invert) {
123     amask.ClearBit(bit);
124     tmask.ClearBit(bit);
125     break;
126     }
127     } else { //always set and-mask bit
128     amask.SetBit(bit);
129     if (!invert)
130     tmask.SetBit(bit); //set trigger bit
131     }
132 loizides 1.1 }
133     delete arr;
134     }
135 loizides 1.16 if (amask.NBitsSet()) {
136 loizides 1.14 fTrigBitsAnd.push_back(amask);
137     fTrigBitsCmp.push_back(tmask);
138     }
139 loizides 1.1 }
140     }
141    
142     //--------------------------------------------------------------------------------------------------
143     void HLTMod::Process()
144     {
145     // Process trigger bits for this event. If trigger bits pass the given bit mask, then obtain
146     // and publish the corresponding trigger objects. If OnAccepted or OnFailed is implemented
147     // in a derived class, call it. Do not stop processing this event, if fAbort is kFALSE.
148    
149     ++fNEvents;
150 loizides 1.4 LoadBranch(fBitsName);
151 loizides 1.1
152     // match trigger bits to trigger mask and obtain trigger objects
153     fMyTrgObjs = new TriggerObjectOArr(0,fMyObjsNamePub);
154     fMyTrgObjs->SetOwner(kFALSE); // the objects are owned by the object table
155     fBitsDone.Clear();
156     Bool_t accept = kFALSE;
157 loizides 1.6 for (UInt_t i = 0; i<fTrigBitsAnd.size(); ++i) {
158     BitMask256 bitmask(fBits->Get());
159     bitmask &= fTrigBitsAnd.at(i);
160     if (bitmask==fTrigBitsCmp.at(i)) {
161 loizides 1.1 accept = kTRUE;
162     AddTrigObjs(i);
163     }
164     }
165    
166     // take action if failed
167     if (!accept) {
168     ++fNFailed;
169     OnFailed();
170     delete fMyTrgObjs;
171     if (fAbort) {
172     SkipEvent(); // abort processing of this event by sub-modules
173     }
174     return;
175     }
176    
177     // take action if accepted
178     ++fNAcceped;
179 loizides 1.9 IncNEventsProcessed();
180 loizides 1.1 OnAccepted();
181     if (!AddObjThisEvt(fMyTrgObjs)) {
182     SendError(kAbortAnalysis, "Process",
183     "Could not add my trigger objects with name %s to event.",
184     fMyTrgObjs->GetName());
185     return;
186     }
187     fMyTrgObjs = 0;
188     }
189    
190     //--------------------------------------------------------------------------------------------------
191     void HLTMod::SlaveBegin()
192     {
193     // Request trigger bit branch and obtain trigger table and objects.
194    
195 loizides 1.4 ReqBranch(fBitsName, fBits);
196 loizides 1.1
197     fTriggers = GetHLTTable();
198     if (!fTriggers) {
199     SendError(kAbortAnalysis, "SlaveBegin", "Could not get HLT trigger table.");
200     return;
201     }
202     fTrigObjs = GetHLTObjectsTable();
203     if (!fTrigObjs) {
204     SendError(kAbortAnalysis, "SlaveBegin", "Could not get HLT trigger objects table.");
205     return;
206     }
207     }
208 loizides 1.9
209     //--------------------------------------------------------------------------------------------------
210     void HLTMod::SlaveTerminate()
211     {
212     // Save number of accepted events.
213    
214 ceballos 1.10 SaveNEventsProcessed("hDHLTEvents");
215 loizides 1.9 }