Belle II Software  release-08-00-04
cdcFullTrackingValidation.py
1 #!/usr/bin/env python3
2 
3 
10 
11 """
12 <header>
13  <contact>software-tracking@belle2.org</contact>
14  <input>EvtGenSimNoBkg.root</input>
15  <output>CDCFullTrackingValidation.root</output>
16  <description>This script validates the full CDC tracking chain with a legendre step first
17  and a cellular automaton step second in Y(4S) runs.</description>
18 </header>
19 """
20 
21 from tracking.validation.run import TrackingValidationRun
22 import tracking
23 import logging
24 import basf2
25 VALIDATION_OUTPUT_FILE = 'CDCFullTrackingValidation.root'
26 N_EVENTS = 1000
27 ACTIVE = True
28 
29 basf2.set_random_seed(1337)
30 
31 
33  """Validate the full CDC track-finding chain"""
34 
35  n_events = N_EVENTS
36 
37  generator_module = 'generic'
38 
39  root_input_file = '../EvtGenSimNoBkg.root'
40 
41  def finder_module(self, path):
42  """Add the CDC track-finding module to the basf2 path"""
43  tracking.add_cdc_track_finding(path)
44  # adjust_module(path, "TFCDC_WireHitPreparer",
45  # UseNLoops=1)
46 
47 
48  tracking_coverage = {
49  'WhichParticles': ['CDC'], # Include all particles seen in CDC, also secondaries
50  'UsePXDHits': False,
51  'UseSVDHits': False,
52  'UseCDCHits': True,
53  'UseOnlyAxialCDCHits': False,
54  "UseReassignedHits": True,
55  "UseNLoops": 1,
56  "UseOnlyBeforeTOP": True,
57  'MinCDCAxialHits': 8,
58  'MinCDCStereoHits': 6,
59  "AllowFirstCDCSuperLayerOnly": True,
60  'EnergyCut': 0,
61  }
62 
63  pulls = True
64 
65  output_file_name = VALIDATION_OUTPUT_FILE
66 
67 
68 def main():
69  validation_run = CDCFull()
70  validation_run.configure_and_execute_from_commandline()
71 
72 
73 if __name__ == '__main__':
74  logging.basicConfig(level=logging.INFO)
75  if ACTIVE:
76  main()
finder_module
Name of the finder module to be used - can be everything that is accepted by tracking....
Definition: main.py:1
int main(int argc, char **argv)
Run all tests.
Definition: test_main.cc:91