BmnRoot
Loading...
Searching...
No Matches
BmnTrigInfo.cxx
Go to the documentation of this file.
1#include "BmnTrigInfo.h"
2
5
6BmnTrigInfo::BmnTrigInfo(UInt_t cand, UInt_t acc, UInt_t befo, UInt_t afte, UInt_t rjct, UInt_t all, UInt_t avail) {
7 fTrigCand = cand;
8 fTrigAcce = acc;
9 fTrigBefo = befo;
10 fTrigAfte = afte;
11 fTrigRjct = rjct;
12 fTrigAll = all;
13 fTrigAvail = avail;
14}
15
19
21 fTrigCand = orig.GetTrigCand();
22 fTrigAcce = orig.GetTrigAccepted();
23 fTrigBefo = orig.GetTrigBefo();
24 fTrigAfte = orig.GetTrigAfter();
25 fTrigRjct = orig.GetTrigRjct();
26 fTrigAll = orig.GetTrigAll();
27 fTrigAvail = orig.GetTrigAvail();
28}
29
UInt_t GetTrigAvail()
Definition BmnTrigInfo.h:75
UInt_t GetTrigAfter()
Definition BmnTrigInfo.h:51
UInt_t GetTrigRjct()
Definition BmnTrigInfo.h:59
virtual ~BmnTrigInfo()
UInt_t GetTrigAll()
Definition BmnTrigInfo.h:67
UInt_t GetTrigBefo()
Definition BmnTrigInfo.h:43
UInt_t GetTrigAccepted()
Definition BmnTrigInfo.h:35
void SetFrom(BmnTrigInfo &info)
UInt_t GetTrigCand()
Definition BmnTrigInfo.h:27