|
||||
File indexing completed on 2025-01-18 09:14:54
0001 # ========================================================================== 0002 # AIDA Detector description implementation 0003 # -------------------------------------------------------------------------- 0004 # Copyright (C) Organisation europeenne pour la Recherche nucleaire (CERN) 0005 # All rights reserved. 0006 # 0007 # For the licensing terms see $DD4hepINSTALL/LICENSE. 0008 # For the list of contributors see $DD4hepINSTALL/doc/CREDITS. 0009 # 0010 # ========================================================================== 0011 from __future__ import absolute_import 0012 0013 0014 def run(): 0015 import DigiTest 0016 digi = DigiTest.Test(geometry=None) 0017 read = digi.input_action('DigiDDG4ROOT/SignalReader', mask=0x0, input=[digi.next_input()]) 0018 dump = digi.event_action('DigiStoreDump/StoreDump', parallel=False) 0019 digi.check_creation([read, dump]) 0020 digi.run_checked(num_events=5, num_threads=5, parallel=3) 0021 0022 0023 if __name__ == '__main__': 0024 run()
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |