Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cbmroot
Manage
Activity
Members
Labels
Plan
Wiki
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Computing
cbmroot
Merge requests
!135
Nicafemto
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Nicafemto
wielanek_AT_if.pw.edu.pl/cbmroot:nicafemto
into
master
Overview
6
Commits
31
Pipelines
14
Changes
109
Merged
Daniel Wielanek
requested to merge
wielanek_AT_if.pw.edu.pl/cbmroot:nicafemto
into
master
4 years ago
Overview
4
Commits
31
Pipelines
14
Changes
109
Expand
Adding support of AnalysisTree to nicafemto.
0
0
Merge request reports
Compare
master
version 14
64d989bb
4 years ago
version 13
54f4bae6
4 years ago
version 12
c2dca8c4
4 years ago
version 11
88ab4959
4 years ago
version 10
30f6cd3a
4 years ago
version 9
30f6cd3a
4 years ago
version 8
921a82c4
4 years ago
version 7
7c67a8fe
4 years ago
version 6
8c522a9d
4 years ago
version 5
0600ec6f
4 years ago
version 4
d7f85f71
4 years ago
version 3
00761694
4 years ago
version 2
daeab339
4 years ago
version 1
960c8100
4 years ago
master (base)
and
latest version
latest version
73cc4088
31 commits,
4 years ago
version 14
64d989bb
31 commits,
4 years ago
version 13
54f4bae6
30 commits,
4 years ago
version 12
c2dca8c4
30 commits,
4 years ago
version 11
88ab4959
29 commits,
4 years ago
version 10
30f6cd3a
29 commits,
4 years ago
version 9
30f6cd3a
29 commits,
4 years ago
version 8
921a82c4
28 commits,
4 years ago
version 7
7c67a8fe
27 commits,
4 years ago
version 6
8c522a9d
27 commits,
4 years ago
version 5
0600ec6f
27 commits,
4 years ago
version 4
d7f85f71
26 commits,
4 years ago
version 3
00761694
26 commits,
4 years ago
version 2
daeab339
25 commits,
4 years ago
version 1
960c8100
25 commits,
4 years ago
109 files
+
3443
−
398
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
109
Search (e.g. *.vue) (Ctrl+P)
analysis/PWGC2F/femtoscopy/nicafemto/cuts/anatreecuts/pair/CbmBasicFemtoPairCut.cxx
0 → 100644
+
63
−
0
Options
/*
* CbmBasicFemtoPairCut.cxx
*
* Created on: 22 wrz 2020
* Author: Daniel Wielanek
* E-mail: daniel.wielanek@gmail.com
* Warsaw University of Technology, Faculty of Physics
*/
#include
"CbmBasicFemtoPairCut.h"
#include
"CbmDeltaPhiDeltaThetaCut.h"
#include
"CbmStsExitSepCut.h"
#include
"NicaCutMonitorX.h"
#include
"NicaCutMonitorXY.h"
CbmBasicFemtoPairCut
::
CbmBasicFemtoPairCut
()
{
AddCut
(
CbmStsExitSepCut
());
AddCut
(
CbmDeltaPhiDeltaThetaStarCut
());
SetSeparationMonitorAxis
(
100
,
0
,
10
);
SetDeltaPhiStarAxis
(
100
,
-
0.1
,
0.1
);
SetDeltaEtaStarAxis
(
100
,
-
0.1
,
0.1
);
}
void
CbmBasicFemtoPairCut
::
SetDeltaPhiStarCut
(
Double_t
min
,
Double_t
max
)
{
GetDeltaPhiEtaStarCut
()
->
SetMinMax
(
min
,
max
,
0
);
}
void
CbmBasicFemtoPairCut
::
SetDeltaEtaStarCut
(
Double_t
min
,
Double_t
max
)
{
GetDeltaPhiEtaStarCut
()
->
SetMinMax
(
min
,
max
,
1
);
}
void
CbmBasicFemtoPairCut
::
SetR
(
Double_t
R
)
{
GetDeltaPhiEtaStarCut
()
->
SetR
(
R
);
}
void
CbmBasicFemtoPairCut
::
SetSTSExitSeparationCut
(
Double_t
min
,
Double_t
max
)
{
GetStsExitCut
()
->
SetMinMax
(
min
,
max
);
}
void
CbmBasicFemtoPairCut
::
CreateBasicMonitors
()
{
TString
opt
=
""
;
Int_t
step
=
0
;
TString
params
=
GetGlobalCutOption
();
if
(
NicaStd
::
FindParam
(
params
,
"re"
))
{
opt
=
"re"
;
}
if
(
NicaStd
::
FindParam
(
params
,
"im"
))
{
opt
=
"im"
;
step
=
1
;
}
NicaCutMonitorX
exitM
(
GetStsExitCut
()
->
CutName
(
opt
),
step
);
exitM
.
SetXaxis
(
fExitSeparation
.
X
(),
fExitSeparation
.
Y
(),
fExitSeparation
.
Z
());
AddCutMonitor
(
exitM
);
NicaCutMonitorXY
phiM
(
GetDeltaPhiEtaStarCut
()
->
CutName
(
opt
),
0
+
step
,
GetDeltaPhiEtaStarCut
()
->
CutName
(
opt
),
1
+
step
);
phiM
.
SetXaxis
(
fMonitorPhiPair
[
0
].
X
(),
fMonitorPhiPair
[
0
].
Y
(),
fMonitorPhiPair
[
0
].
Z
());
phiM
.
SetYaxis
(
fMonitorPhiPair
[
1
].
X
(),
fMonitorPhiPair
[
1
].
Y
(),
fMonitorPhiPair
[
1
].
Z
());
AddCutMonitor
(
phiM
);
}
CbmBasicFemtoPairCut
::~
CbmBasicFemtoPairCut
()
{}
Loading