Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
EIC
Project Juggler
Commits
19563a76
Commit
19563a76
authored
Oct 05, 2020
by
Whitney Armstrong
Browse files
Turning back tree name to "events"
- Not sure why it was changed to "EVENT". - This name is set by podio.
parent
d6fff055
Changes
3
Hide whitespace changes
Inline
Side-by-side
JugBase/src/PodioDataSvc.cpp
View file @
19563a76
...
...
@@ -85,7 +85,7 @@ void PodioDataSvc::setCollectionIDs(podio::CollectionIDTable* collectionIds) {
PodioDataSvc
::
PodioDataSvc
(
const
std
::
string
&
name
,
ISvcLocator
*
svc
)
:
DataSvc
(
name
,
svc
),
m_collectionIDs
(
new
podio
::
CollectionIDTable
())
{
m_eventDataTree
=
new
TTree
(
"
EVENT
"
,
"Events tree"
);
m_eventDataTree
=
new
TTree
(
"
events
"
,
"Events tree"
);
}
/// Standard Destructor
...
...
JugDigi/tests/options/example_crystalendcapsdigi.py
View file @
19563a76
...
...
@@ -3,14 +3,14 @@ from Gaudi.Configuration import *
from
GaudiKernel.DataObjectHandleBase
import
DataObjectHandleBase
from
Configurables
import
ApplicationMgr
,
EICDataSvc
,
PodioOutput
,
GeoSvc
geo_service
=
GeoSvc
(
"GeoSvc"
)
podioevent
=
EICDataSvc
(
"EventDataSvc"
,
inputs
=
[
"output_emcal_electrons_npsim.root"
],
OutputLevel
=
DEBUG
)
from
Configurables
import
PodioInput
from
Configurables
import
Jug__Digi__CrystalEndcapsDigi
as
CrystalEndcapsDigi
#geo_service = GeoSvc("GeoSvc")
podioevent
=
EICDataSvc
(
"EventDataSvc"
,
inputs
=
[
"output_emcal_electrons_npsim.root"
],
OutputLevel
=
DEBUG
)
podioinput
=
PodioInput
(
"PodioReader"
,
collections
=
[
"mcparticles"
,
"EcalHits"
],
OutputLevel
=
DEBUG
)
emcaldigi
=
CrystalEndcapsDigi
(
inputHitCollection
=
"EcalHits"
,
outputHitCollection
=
"RawDigiEcalHits"
)
emcaldigi
=
CrystalEndcapsDigi
(
"ecal_digi"
,
inputHitCollection
=
"EcalHits"
,
outputHitCollection
=
"RawDigiEcalHits"
,
OutputLevel
=
DEBUG
)
out
=
PodioOutput
(
"out"
,
filename
=
"digi_emcal_electrons_npsim.root"
)
out
.
outputCommands
=
[
"keep *"
]
...
...
README.md
View file @
19563a76
# Project Juggler
Project Juggler
===============
Concurrent event processor for NP experiments, based on the Gaudi framework.
Overview
--------
### Running Juggler
```
./scripts/run_topside.py -i eic_upsilon.hepmc -o test_hytop.root -n 10
../where_ever/../juggler/build/run gaudirun.py options/example_reconstruction.py
```
### `JugBase`
### `JugDigi`
### `JugReco`
Concurrent event processor for NP experiments, based on the Gaudi framework.
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment