Revision: | 1.1 |
Committed: | Tue Mar 24 16:10:16 2009 UTC (16 years, 1 month ago) by loizides |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | Mit_012c, Mit_012b, Mit_012a, Mit_012, Mit_011a, Mit_011, Mit_010a, Mit_010, Mit_009c, Mit_009b, Mit_009a, Mit_009, Mit_008 |
Log Message: | Have TriggerTable as a standalone file and cintable. |
# | Content |
---|---|
1 | // $Id: TriggerName.cc,v 1.4 2008/12/08 16:42:53 loizides Exp $ |
2 | |
3 | #include "MitAna/DataTree/interface/TriggerTable.h" |
4 | |
5 | ClassImp(mithep::TriggerTable) |
6 | |
7 | using namespace mithep; |
8 | |
9 | //-------------------------------------------------------------------------------------------------- |
10 | void TriggerTable::Print(Option_t *opt) const |
11 | { |
12 | // Print trigger table content (not ordered!) |
13 | |
14 | TIter iter(MakeIterator()); |
15 | const TriggerName *tn = dynamic_cast<const TriggerName*>(iter.Next()); |
16 | while (tn) { |
17 | tn->Print(); |
18 | tn = dynamic_cast<const TriggerName*>(iter.Next()); |
19 | } |
20 | } |