Skip to content

Commit

Permalink
Use default event levels for inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanwbrei committed Apr 8, 2024
1 parent 69aea70 commit bbadc01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/examples/TimesliceExample/MyEventFactory.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

struct MyEventFactory : public JOmniFactory<MyEventFactory> {

PodioInput<ExampleCluster> m_protoclusters_in {this, "evt_protoclusters", JEventLevel::Event};
PodioInput<ExampleCluster> m_protoclusters_in {this, "evt_protoclusters"};
PodioOutput<ExampleCluster> m_clusters_out {this, "clusters"};


Expand Down
2 changes: 1 addition & 1 deletion src/examples/TimesliceExample/MyTimesliceFactory.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

struct MyTimesliceFactory : public JOmniFactory<MyTimesliceFactory> {

PodioInput<ExampleHit> hits_in {this, "hits", JEventLevel::Timeslice};
PodioInput<ExampleHit> hits_in {this, "hits"};
PodioOutput<ExampleCluster> clusters_out {this, "protoclusters"};

MyTimesliceFactory() {
Expand Down

0 comments on commit bbadc01

Please sign in to comment.