Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
irt
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
EIC
irt
Commits
e151cdae
Commit
e151cdae
authored
3 years ago
by
Alexander Kiselev
Browse files
Options
Downloads
Patches
Plain Diff
Changes associated with the 'radiator' field in CherenkovPdgHypothesis in eic_data.yaml
parent
513299e7
No related branches found
No related tags found
1 merge request
!6
Draft: recent juggler configuration changes in a local copy of testIRT.py
Pipeline
#23554
failed
3 years ago
Stage: config
Stage: build
Stage: tests
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+3
-3
3 additions, 3 deletions
README.md
evaluation/source/evaluation.cc
+3
-2
3 additions, 2 deletions
evaluation/source/evaluation.cc
with
6 additions
and
5 deletions
README.md
+
3
−
3
View file @
e151cdae
...
@@ -97,7 +97,7 @@ make -j2 install
...
@@ -97,7 +97,7 @@ make -j2 install
# Install a particular branch of the EIC data model (will become master soon);
# Install a particular branch of the EIC data model (will become master soon);
cd /tmp/ATHENA
cd /tmp/ATHENA
git clone https://eicweb.phy.anl.gov/EIC/eicd.git --branch ayk-0
0
git clone https://eicweb.phy.anl.gov/EIC/eicd.git --branch ayk-0
1
cd eicd && mkdir build && cd build
cd eicd && mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX=/tmp/ATHENA ..
cmake -DCMAKE_INSTALL_PREFIX=/tmp/ATHENA ..
make -j2 install
make -j2 install
...
@@ -113,7 +113,7 @@ Installation
...
@@ -113,7 +113,7 @@ Installation
```
```
cd /tmp/ATHENA
cd /tmp/ATHENA
git clone https://eicweb.phy.anl.gov/EIC/irt.git
git clone https://eicweb.phy.anl.gov/EIC/irt.git
--branch ayk-01
cd irt && mkdir build && cd build
cd irt && mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX=/tmp/ATHENA -DEVALUATION=YES ..
cmake -DCMAKE_INSTALL_PREFIX=/tmp/ATHENA -DEVALUATION=YES ..
make -j2 install
make -j2 install
...
@@ -193,7 +193,7 @@ Juggler reconstruction pass
...
@@ -193,7 +193,7 @@ Juggler reconstruction pass
```
```
cd /tmp/ATHENA
cd /tmp/ATHENA
git clone https://eicweb.phy.anl.gov/EIC/juggler.git --branch
irt-init
git clone https://eicweb.phy.anl.gov/EIC/juggler.git --branch
ayk-01
cd juggler && mkdir build && cd build
cd juggler && mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX=/tmp/ATHENA ..
cmake -DCMAKE_INSTALL_PREFIX=/tmp/ATHENA ..
...
...
This diff is collapsed.
Click to expand it.
evaluation/source/evaluation.cc
+
3
−
2
View file @
e151cdae
...
@@ -87,7 +87,7 @@ int main(int argc, char** argv)
...
@@ -87,7 +87,7 @@ int main(int argc, char** argv)
{
{
const
eic
::
CherenkovPdgHypothesis
*
best
=
0
;
const
eic
::
CherenkovPdgHypothesis
*
best
=
0
;
printf
(
"%d %d
\n
"
,
cherenkov
->
options_begin
,
cherenkov
->
options_end
);
//
printf("%d %d\n", cherenkov->options_begin, cherenkov->options_end);
for
(
unsigned
iq
=
cherenkov
->
options_begin
;
iq
<
cherenkov
->
options_end
;
iq
++
)
{
for
(
unsigned
iq
=
cherenkov
->
options_begin
;
iq
<
cherenkov
->
options_end
;
iq
++
)
{
const
auto
&
option
=
(
*
options
)[
iq
];
const
auto
&
option
=
(
*
options
)[
iq
];
...
@@ -95,7 +95,8 @@ int main(int argc, char** argv)
...
@@ -95,7 +95,8 @@ int main(int argc, char** argv)
if
(
abs
(
option
.
pdg
)
==
11
)
continue
;
if
(
abs
(
option
.
pdg
)
==
11
)
continue
;
if
(
!
best
||
option
.
weight
>
best
->
weight
)
best
=
&
option
;
if
(
!
best
||
option
.
weight
>
best
->
weight
)
best
=
&
option
;
printf
(
"%3d (%5d): %5d %7.2f
\n
"
,
iq
,
option
.
pdg
,
option
.
npe
,
option
.
weight
);
printf
(
"radiator %3d (pdg %5d): npe %5d, weight %7.2f
\n
"
,
option
.
radiator
,
option
.
pdg
,
option
.
npe
,
option
.
weight
);
}
//for
}
//for
// Check whether the true PDG got a highest score;
// Check whether the true PDG got a highest score;
...
...
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