Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
easyjet
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Tamas Marton Baer
easyjet
Commits
1209e471
Commit
1209e471
authored
7 months ago
by
Thomas Strebler
Browse files
Options
Downloads
Patches
Plain Diff
Drop unused MBB_MASS flag for bbttAnalysis
parent
b61a31c3
No related branches found
Branches containing commit
Tags
0.14.0
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
bbttAnalysis/src/HHbbttEnums.h
+0
-1
0 additions, 1 deletion
bbttAnalysis/src/HHbbttEnums.h
bbttAnalysis/src/HHbbttSelectorAlg.cxx
+0
-6
0 additions, 6 deletions
bbttAnalysis/src/HHbbttSelectorAlg.cxx
bbttAnalysis/src/HHbbttSelectorAlg.h
+0
-1
0 additions, 1 deletion
bbttAnalysis/src/HHbbttSelectorAlg.h
with
0 additions
and
8 deletions
bbttAnalysis/src/HHbbttEnums.h
+
0
−
1
View file @
1209e471
...
...
@@ -79,7 +79,6 @@ namespace HHBBTT
TWO_JETS
,
TWO_BJETS
,
ONE_BJET
,
MBB_MASS
,
N_LEPTONS_CUT_LEPHAD
,
ONE_TAU
,
OS_CHARGE_LEPHAD
,
...
...
This diff is collapsed.
Click to expand it.
bbttAnalysis/src/HHbbttSelectorAlg.cxx
+
0
−
6
View file @
1209e471
...
...
@@ -354,8 +354,6 @@ namespace HHBBTT
// jet
//************
int
n_jets
=
0
;
TLorentzVector
bb
(
0
,
0
,
0
,
0
);
float
mbb
=
0
;
bool
WPgiven
=
!
m_isBtag
.
empty
();
auto
bjets
=
std
::
make_unique
<
ConstDataVector
<
xAOD
::
JetContainer
>>
(
SG
::
VIEW_ELEMENTS
);
...
...
@@ -392,8 +390,6 @@ namespace HHBBTT
if
(
bjets
->
size
()
==
2
)
{
m_bools
.
at
(
HHBBTT
::
TWO_BJETS
)
=
(
bjets
->
at
(
0
)
->
pt
()
>
45.
*
Athena
::
Units
::
GeV
&&
bjets
->
at
(
1
)
->
pt
()
>
20.
*
Athena
::
Units
::
GeV
);
bb
=
bjets
->
at
(
0
)
->
p4
()
+
bjets
->
at
(
1
)
->
p4
();
mbb
=
bb
.
M
();
}
else
if
(
bjets
->
size
()
==
1
)
{
m_bools
.
at
(
HHBBTT
::
ONE_BJET
)
=
(
bjets
->
at
(
0
)
->
pt
()
>
45.
*
Athena
::
Units
::
GeV
);
}
...
...
@@ -404,8 +400,6 @@ namespace HHBBTT
//****************
// event level info
//****************
if
(
mbb
<
150.
*
Athena
::
Units
::
GeV
)
m_bools
.
at
(
HHBBTT
::
MBB_MASS
)
=
true
;
if
(
n_taus
==
1
&&
n_leptons
==
1
&&
tau0
->
charge
()
!=
charge_lepton
)
m_bools
.
at
(
HHBBTT
::
OS_CHARGE_LEPHAD
)
=
true
;
if
(
n_taus
==
2
&&
tau0
->
charge
()
==
-
tau1
->
charge
())
...
...
This diff is collapsed.
Click to expand it.
bbttAnalysis/src/HHbbttSelectorAlg.h
+
0
−
1
View file @
1209e471
...
...
@@ -170,7 +170,6 @@ private:
{
HHBBTT
::
TWO_JETS
,
"TWO_JETS"
},
{
HHBBTT
::
TWO_BJETS
,
"TWO_BJETS"
},
{
HHBBTT
::
ONE_BJET
,
"ONE_BJET"
},
{
HHBBTT
::
MBB_MASS
,
"MBB_MASS"
},
{
HHBBTT
::
N_LEPTONS_CUT_LEPHAD
,
"N_LEPTONS_CUT_LEPHAD"
},
{
HHBBTT
::
ONE_TAU
,
"ONE_TAU"
},
{
HHBBTT
::
OS_CHARGE_LEPHAD
,
"OS_CHARGE_LEPHAD"
},
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment