Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
physics_benchmarks
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
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
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIC
benchmarks
physics_benchmarks
Commits
6ce24ea9
Commit
6ce24ea9
authored
Nov 8, 2021
by
Kong Tu
Browse files
Options
Downloads
Patches
Plain Diff
run dvcs-d analysis
parent
4e53a07c
No related branches found
No related tags found
1 merge request
!100
Draft: Diffractive phi benchmark development
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
benchmarks/dvcs-d/analysis/dvcs_d_analysis.cxx
+6
-1
6 additions, 1 deletion
benchmarks/dvcs-d/analysis/dvcs_d_analysis.cxx
benchmarks/dvcs-d/analysis/pleaseIncludeMe.h
+10
-0
10 additions, 0 deletions
benchmarks/dvcs-d/analysis/pleaseIncludeMe.h
with
16 additions
and
1 deletion
benchmarks/dvcs-d/analysis/dvcs_d_analysis.cxx
+
6
−
1
View file @
6ce24ea9
...
@@ -70,7 +70,7 @@ int dvcs_d_analysis(const std::string& config_name)
...
@@ -70,7 +70,7 @@ int dvcs_d_analysis(const std::string& config_name)
.
Define
(
"gamma_rec_pt"
,
getPt
,{
"gammaREC"
}).
Define
(
"gamma_rec_eta"
,
getEta
,{
"gammaREC"
}).
Define
(
"gamma_rec_E"
,
getE
,{
"gammaREC"
})
.
Define
(
"gamma_rec_pt"
,
getPt
,{
"gammaREC"
}).
Define
(
"gamma_rec_eta"
,
getEta
,{
"gammaREC"
}).
Define
(
"gamma_rec_E"
,
getE
,{
"gammaREC"
})
.
Define
(
"protonREC"
,
findScatProton
,{
"ReconstructedFFParticles"
}).
Define
(
"proton_rec_eta"
,
getEta
,{
"protonREC"
}).
Define
(
"proton_rec_phi"
,
getPhi
,{
"protonREC"
}).
Define
(
"proton_rec_px"
,
getPx
,{
"protonREC"
}).
Define
(
"proton_rec_py"
,
getPy
,{
"protonREC"
}).
Define
(
"proton_rec_momentum"
,
getPmiss
,{
"protonREC"
,
"mcparticles"
})
.
Define
(
"protonREC"
,
findScatProton
,{
"ReconstructedFFParticles"
}).
Define
(
"proton_rec_eta"
,
getEta
,{
"protonREC"
}).
Define
(
"proton_rec_phi"
,
getPhi
,{
"protonREC"
}).
Define
(
"proton_rec_px"
,
getPx
,{
"protonREC"
}).
Define
(
"proton_rec_py"
,
getPy
,{
"protonREC"
}).
Define
(
"proton_rec_momentum"
,
getPmiss
,{
"protonREC"
,
"mcparticles"
})
.
Define
(
"proton_rec_p"
,
getP
,{
"protonREC"
}).
Define
(
"proton_rec_pz"
,
getPz
,{
"protonREC"
})
.
Define
(
"proton_rec_p"
,
getP
,{
"protonREC"
}).
Define
(
"proton_rec_pz"
,
getPz
,{
"protonREC"
})
.
Define
(
"neutronREC"
,
findScatNeutron
,{
"ReconstructedFFParticles"
}).
Define
(
"neutron_rec_px"
,
getPx
,{
"neutronREC"
}).
Define
(
"neutron_rec_py"
,
getPy
,{
"neutronREC"
})
.
Define
(
"neutronREC"
,
findScatNeutron
,{
"ReconstructedFFParticles"
}).
Define
(
"neutron_rec_px"
,
getPx
,{
"neutronREC"
}).
Define
(
"neutron_rec_py"
,
getPy
,{
"neutronREC"
})
.
Define
(
"neutron_rec_momentum"
,
getPmiss
,{
"neutronREC"
})
.
Define
(
"proton_rec_pt"
,
getPt
,{
"protonREC"
}).
Define
(
"proton_rec_theta"
,
getTheta
,{
"protonREC"
})
.
Define
(
"proton_rec_pt"
,
getPt
,{
"protonREC"
}).
Define
(
"proton_rec_theta"
,
getTheta
,{
"protonREC"
})
.
Define
(
"t_REC"
,
giveme_t_doubleTagging_REC
,{
"ReconstructedFFParticles"
,
"mcparticles"
}).
Define
(
"t_REC_A"
,
giveme_t
,{
"gammaREC"
,
"scatElec"
})
.
Define
(
"t_REC"
,
giveme_t_doubleTagging_REC
,{
"ReconstructedFFParticles"
,
"mcparticles"
}).
Define
(
"t_REC_A"
,
giveme_t
,{
"gammaREC"
,
"scatElec"
})
.
Filter
(
kineCut
,{
"Q2_elec"
,
"y_elec"
});
.
Filter
(
kineCut
,{
"Q2_elec"
,
"y_elec"
});
...
@@ -91,6 +91,7 @@ int dvcs_d_analysis(const std::string& config_name)
...
@@ -91,6 +91,7 @@ int dvcs_d_analysis(const std::string& config_name)
auto
h_EtaPhi_proton_REC
=
d1
.
Histo2D
({
"h_EtaPhi_proton_REC"
,
";#eta;#phi"
,
100
,
-
10
,
10
,
100
,
-
PI
,
PI
},
"proton_rec_eta"
,
"proton_rec_phi"
);
auto
h_EtaPhi_proton_REC
=
d1
.
Histo2D
({
"h_EtaPhi_proton_REC"
,
";#eta;#phi"
,
100
,
-
10
,
10
,
100
,
-
PI
,
PI
},
"proton_rec_eta"
,
"proton_rec_phi"
);
auto
h_PxPy_proton_REC
=
d1
.
Histo2D
({
"h_PxPy_proton_REC"
,
";#px;#py"
,
200
,
-
6
,
2
,
200
,
-
6
,
2
},
"proton_rec_px"
,
"proton_rec_py"
);
auto
h_PxPy_proton_REC
=
d1
.
Histo2D
({
"h_PxPy_proton_REC"
,
";#px;#py"
,
200
,
-
6
,
2
,
200
,
-
6
,
2
},
"proton_rec_px"
,
"proton_rec_py"
);
auto
h_PxPy_neutron_REC
=
d1
.
Histo2D
({
"h_PxPy_neutron_REC"
,
";#px;#py"
,
200
,
-
6
,
2
,
200
,
-
6
,
2
},
"neutron_rec_px"
,
"neutron_rec_py"
);
auto
h_PxPy_neutron_REC
=
d1
.
Histo2D
({
"h_PxPy_neutron_REC"
,
";#px;#py"
,
200
,
-
6
,
2
,
200
,
-
6
,
2
},
"neutron_rec_px"
,
"neutron_rec_py"
);
auto
h_Momentum_neutron_REC
=
d1
.
Histo1D
({
"h_Momentum_neutron_REC"
,
"; P; counts"
,
100
,
0
,
2
},
"neutron_rec_momentum"
);
auto
h_t_REC
=
d1
.
Histo1D
({
"h_t_REC"
,
"; t; counts"
,
50
,
0
,
2
},
"t_REC"
);
auto
h_t_REC
=
d1
.
Histo1D
({
"h_t_REC"
,
"; t; counts"
,
50
,
0
,
2
},
"t_REC"
);
auto
h_t_REC_A
=
d1
.
Histo1D
({
"h_t_REC_A"
,
"; t; counts"
,
50
,
0
,
2
},
"t_REC_A"
);
auto
h_t_REC_A
=
d1
.
Histo1D
({
"h_t_REC_A"
,
"; t; counts"
,
50
,
0
,
2
},
"t_REC_A"
);
...
@@ -106,6 +107,7 @@ int dvcs_d_analysis(const std::string& config_name)
...
@@ -106,6 +107,7 @@ int dvcs_d_analysis(const std::string& config_name)
.
Define
(
"gammaMC"
,
findGammaMC
,{
"mcparticles"
}).
Define
(
"MassMC"
,
getMass
,{
"gammaMC"
}).
Define
(
"gamma_mc_pt"
,
getPt
,{
"gammaMC"
}).
Define
(
"gamma_mc_eta"
,
getEta
,{
"gammaMC"
})
.
Define
(
"gammaMC"
,
findGammaMC
,{
"mcparticles"
}).
Define
(
"MassMC"
,
getMass
,{
"gammaMC"
}).
Define
(
"gamma_mc_pt"
,
getPt
,{
"gammaMC"
}).
Define
(
"gamma_mc_eta"
,
getEta
,{
"gammaMC"
})
.
Define
(
"protonMC"
,
findScatProtonMC
,{
"mcparticles"
}).
Define
(
"proton_mc_pt"
,
getPt
,{
"protonMC"
}).
Define
(
"proton_mc_eta"
,
getEta
,{
"protonMC"
}).
Define
(
"proton_mc_theta"
,
getTheta
,{
"protonMC"
})
.
Define
(
"protonMC"
,
findScatProtonMC
,{
"mcparticles"
}).
Define
(
"proton_mc_pt"
,
getPt
,{
"protonMC"
}).
Define
(
"proton_mc_eta"
,
getEta
,{
"protonMC"
}).
Define
(
"proton_mc_theta"
,
getTheta
,{
"protonMC"
})
.
Define
(
"proton_mc_momentum"
,
getPmiss
,{
"protonMC"
,
"mcparticles"
}).
Define
(
"proton_mc_p"
,
getP
,{
"protonMC"
}).
Define
(
"proton_mc_pz"
,
getPz
,{
"protonMC"
})
.
Define
(
"proton_mc_momentum"
,
getPmiss
,{
"protonMC"
,
"mcparticles"
}).
Define
(
"proton_mc_p"
,
getP
,{
"protonMC"
}).
Define
(
"proton_mc_pz"
,
getPz
,{
"protonMC"
})
.
Define
(
"neutronMC"
,
findScatNeutronMC
,{
"mcparticles"
}).
Define
(
"neutron_mc_momentum"
,
getPmiss
,{
"neutronMC"
})
.
Define
(
"t_MC"
,
giveme_t_neutron_MC
,{
"mcparticles"
})
.
Define
(
"t_MC"
,
giveme_t_neutron_MC
,{
"mcparticles"
})
.
Filter
(
kineCut
,{
"Q2_elec"
,
"y_elec"
});
.
Filter
(
kineCut
,{
"Q2_elec"
,
"y_elec"
});
...
@@ -117,6 +119,7 @@ int dvcs_d_analysis(const std::string& config_name)
...
@@ -117,6 +119,7 @@ int dvcs_d_analysis(const std::string& config_name)
auto
h_Eta_proton_MC
=
d2
.
Histo1D
({
"h_Eta_proton_MC"
,
"; #eta; counts"
,
100
,
0
,
9
},
"proton_mc_eta"
);
auto
h_Eta_proton_MC
=
d2
.
Histo1D
({
"h_Eta_proton_MC"
,
"; #eta; counts"
,
100
,
0
,
9
},
"proton_mc_eta"
);
auto
h_Theta_proton_MC
=
d2
.
Histo1D
({
"h_Theta_proton_MC"
,
"; #theta; counts"
,
100
,
0
,
0.1
},
"proton_mc_theta"
);
auto
h_Theta_proton_MC
=
d2
.
Histo1D
({
"h_Theta_proton_MC"
,
"; #theta; counts"
,
100
,
0
,
0.1
},
"proton_mc_theta"
);
auto
h_Momentum_proton_MC
=
d2
.
Histo1D
({
"h_Momentum_proton_MC"
,
"; P; counts"
,
100
,
0
,
2
},
"proton_mc_momentum"
);
auto
h_Momentum_proton_MC
=
d2
.
Histo1D
({
"h_Momentum_proton_MC"
,
"; P; counts"
,
100
,
0
,
2
},
"proton_mc_momentum"
);
auto
h_Momentum_neutron_MC
=
d2
.
Histo1D
({
"h_Momentum_neutron_MC"
,
"; P; counts"
,
100
,
0
,
2
},
"neutron_mc_momentum"
);
auto
h_P_proton_MC
=
d2
.
Histo1D
({
"h_P_proton_MC"
,
"; P; counts"
,
200
,
0
,
200
},
"proton_mc_p"
);
auto
h_P_proton_MC
=
d2
.
Histo1D
({
"h_P_proton_MC"
,
"; P; counts"
,
200
,
0
,
200
},
"proton_mc_p"
);
auto
h_Pz_proton_MC
=
d2
.
Histo1D
({
"h_Pz_proton_MC"
,
"; P; counts"
,
200
,
0
,
200
},
"proton_mc_pz"
);
auto
h_Pz_proton_MC
=
d2
.
Histo1D
({
"h_Pz_proton_MC"
,
"; P; counts"
,
200
,
0
,
200
},
"proton_mc_pz"
);
auto
h_t_MC
=
d2
.
Histo1D
({
"h_t_MC"
,
"; ; counts"
,
50
,
0
,
2
},
"t_MC"
);
auto
h_t_MC
=
d2
.
Histo1D
({
"h_t_MC"
,
"; ; counts"
,
50
,
0
,
2
},
"t_MC"
);
...
@@ -151,6 +154,7 @@ int dvcs_d_analysis(const std::string& config_name)
...
@@ -151,6 +154,7 @@ int dvcs_d_analysis(const std::string& config_name)
h_EtaPhi_proton_REC
->
Write
();
h_EtaPhi_proton_REC
->
Write
();
h_PxPy_proton_REC
->
Write
();
h_PxPy_proton_REC
->
Write
();
h_PxPy_neutron_REC
->
Write
();
h_PxPy_neutron_REC
->
Write
();
h_Momentum_neutron_REC
->
Wirte
();
h_t_REC
->
Write
();
h_t_REC
->
Write
();
h_t_REC_A
->
Write
();
h_t_REC_A
->
Write
();
...
@@ -164,6 +168,7 @@ int dvcs_d_analysis(const std::string& config_name)
...
@@ -164,6 +168,7 @@ int dvcs_d_analysis(const std::string& config_name)
h_Eta_proton_MC
->
Write
();
h_Eta_proton_MC
->
Write
();
h_Theta_proton_MC
->
Write
();
h_Theta_proton_MC
->
Write
();
h_Momentum_proton_MC
->
Write
();
h_Momentum_proton_MC
->
Write
();
h_Momentum_neutron_MC
->
Write
();
h_P_proton_MC
->
Write
();
h_P_proton_MC
->
Write
();
h_Pz_proton_MC
->
Write
();
h_Pz_proton_MC
->
Write
();
h_t_MC
->
Write
();
h_t_MC
->
Write
();
...
...
This diff is collapsed.
Click to expand it.
benchmarks/dvcs-d/analysis/pleaseIncludeMe.h
+
10
−
0
View file @
6ce24ea9
...
@@ -185,6 +185,16 @@ auto findScatProton(const std::vector<eic::ReconstructedParticleData>& FF){
...
@@ -185,6 +185,16 @@ auto findScatProton(const std::vector<eic::ReconstructedParticleData>& FF){
return
momenta
;
return
momenta
;
}
}
auto
findScatNeutronMC
(
const
std
::
vector
<
dd4pod
::
Geant4ParticleData
>&
parts
){
std
::
vector
<
ROOT
::
Math
::
PxPyPzMVector
>
momenta
;
for
(
auto
&
i1
:
parts
){
if
(
i1
.
genStatus
==
1
&&
i1
.
pdgID
==
2112
){
momenta
.
push_back
(
ROOT
::
Math
::
PxPyPzMVector
{
i1
.
p
.
x
,
i1
.
p
.
y
,
i1
.
p
.
z
,
i1
.
mass
});
}
}
return
momenta
;
}
auto
findScatNeutron
(
const
std
::
vector
<
eic
::
ReconstructedParticleData
>&
FF
){
auto
findScatNeutron
(
const
std
::
vector
<
eic
::
ReconstructedParticleData
>&
FF
){
std
::
vector
<
ROOT
::
Math
::
PxPyPzMVector
>
momenta
;
std
::
vector
<
ROOT
::
Math
::
PxPyPzMVector
>
momenta
;
for
(
auto
&
i1
:
FF
){
for
(
auto
&
i1
:
FF
){
...
...
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
sign in
to comment