Phase.hh
Go to the documentation of this file.
1 
4 #pragma once
5 
8 
9 namespace boca
10 {
11 
16 class Phase
17 {
18 public:
22  Phase(boca::Stage stage, boca::Tag tag);
23 
29  boca::Stage Stage() const;
30 
36  boca::Tag Tag() const;
37 
38 private:
39 
40  boca::Stage stage_;
41 
42  boca::Tag tag_;
43 
44 };
45 
46 }
Stage
The stage of the multivariant tagging process.
Definition: Stage.hh:15
Tag
The Tag distinguishes between signal and background events.
Definition: Tag.hh:14
Phase(boca::Stage stage, boca::Tag tag)
Constructor.
Definition: Phase.cpp:7
boca::Stage Stage() const
The stage of the multivariant tagging process.
Definition: Phase.cpp:13
Boosted Collider Analysis.
Definition: Analysis.hh:15
The phases of the multivariant tagging process.
Definition: Phase.hh:16
boca::Tag Tag() const
The Tag of the multivariant tagging process.
Definition: Phase.cpp:18