-
Notifications
You must be signed in to change notification settings - Fork 55
/
manual.txt
2043 lines (1392 loc) · 40.9 KB
/
manual.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Command directory path : /remoll/
Guidance :
Remoll properties
Sub-directories :
/remoll/geometry/ Remoll geometry properties
/remoll/kryptonite/ Remoll kryptonite properties
/remoll/parallel/ Remoll parallel geometry properties
/remoll/physlist/ Remoll physics list properties
/remoll/SD/ Remoll SD properties
/remoll/field/ Remoll global field properties
/remoll/tracking/ @ Remoll tracking properties
/remoll/evgen/ @ Remoll event generator properties
Commands :
setgeofile * Set geometry GDML file
printgeometry * Print the geometry tree
printelements * Print the elements
printmaterials * Print the materials
parallel * Enable parallel physics
optical * Enable optical physics
seed * Set random engine seed
interval * Print this many progress points (i.e. 100 -> every 1%)
filename * Output filename
addfield * Add magnetic field
scalefield * Scale magnetic field
magcurrent * Scale magnetic field by current
targname @ Target name
targlen @ Target length
targpos @ Target position
printtargetinfo @ ...Title not available...
beamcurr @ Beam current
beamene @ Beam energy
oldras @ Old (no ang corln) or new (ang corl) raster
rasx @ Square raster width x (horizontal)
rasy @ Square raster width y (vertical)
beam_x0 @ beam initial position in x (horizontal)
beam_y0 @ beam initial position in y (vertical)
beam_ph0 @ beam initial direction in x (horizontal)
beam_th0 @ beam initial direction in y (vertical)
beam_corrph @ beam correlated angle (horizontal)
beam_corrth @ beam correlated angle (vertical)
beam_dph @ beam gaussian spread in x (horizontal)
beam_dth @ beam gaussian spread in y (vertical)
Command /remoll/setgeofile
Guidance :
Set geometry GDML file
Parameter : arg
Parameter type : s
Omittable : False
Command /remoll/printgeometry
Guidance :
Print the geometry tree
Parameter : arg
Parameter type : s
Omittable : False
Default value : false
Command /remoll/printelements
Guidance :
Print the elements
Command /remoll/printmaterials
Guidance :
Print the materials
Command /remoll/parallel
Guidance :
Enable parallel physics
Parameter : arg
Parameter type : s
Omittable : False
Default value : true
Command /remoll/optical
Guidance :
Enable optical physics
Parameter : arg
Parameter type : s
Omittable : False
Default value : true
Command /remoll/seed
Guidance :
Set random engine seed
Parameter : seed
Parameter type : s
Omittable : False
Command /remoll/interval
Guidance :
Print this many progress points (i.e. 100 -> every 1%)
Parameter : interval
Parameter type : s
Omittable : False
Command /remoll/filename
Guidance :
Output filename
Parameter : value
Parameter type : s
Omittable : False
Command /remoll/addfield
Guidance :
Add magnetic field
Parameter : arg
Parameter type : s
Omittable : False
Command /remoll/scalefield
Guidance :
Scale magnetic field
Parameter : arg
Parameter type : s
Omittable : False
Command /remoll/magcurrent
Guidance :
Scale magnetic field by current
Parameter : arg
Parameter type : s
Omittable : False
Command /remoll/targname
---- available only in worker thread
Guidance :
Target name
Parameter : arg
Parameter type : s
Omittable : False
Command /remoll/targlen
---- available only in worker thread
Guidance :
Target length
Parameter : value
Parameter type : d
Omittable : False
Parameter : Unit
Parameter type : s
Omittable : True
Default value : cm
Candidates : pc km m cm mm um nm Ang fm parsec kilometer meter centimeter millimeter micrometer nanometer angstrom fermi
Command /remoll/targpos
---- available only in worker thread
Guidance :
Target position
Parameter : value
Parameter type : d
Omittable : False
Parameter : Unit
Parameter type : s
Omittable : True
Default value : cm
Candidates : pc km m cm mm um nm Ang fm parsec kilometer meter centimeter millimeter micrometer nanometer angstrom fermi
Command /remoll/printtargetinfo
---- available only in worker thread
Guidance :
Command /remoll/beamcurr
---- available only in worker thread
Guidance :
Beam current
Parameter : value
Parameter type : d
Omittable : False
Parameter : Unit
Parameter type : s
Omittable : True
Default value : microampere
Candidates : A mA muA nA ampere milliampere microampere nanoampere
Command /remoll/beamene
---- available only in worker thread
Guidance :
Beam energy
Parameter : value
Parameter type : d
Omittable : False
Parameter : Unit
Parameter type : s
Omittable : True
Default value : GeV
Candidates : eV keV MeV GeV TeV PeV J electronvolt kiloelectronvolt megaelectronvolt gigaelectronvolt teraelectronvolt petaelectronvolt joule
Command /remoll/oldras
---- available only in worker thread
Guidance :
Old (no ang corln) or new (ang corl) raster
Parameter : value
Parameter type : b
Omittable : False
Command /remoll/rasx
---- available only in worker thread
Guidance :
Square raster width x (horizontal)
Parameter : value
Parameter type : d
Omittable : False
Parameter : Unit
Parameter type : s
Omittable : True
Default value : cm
Candidates : pc km m cm mm um nm Ang fm parsec kilometer meter centimeter millimeter micrometer nanometer angstrom fermi
Command /remoll/rasy
---- available only in worker thread
Guidance :
Square raster width y (vertical)
Parameter : value
Parameter type : d
Omittable : False
Parameter : Unit
Parameter type : s
Omittable : True
Default value : cm
Candidates : pc km m cm mm um nm Ang fm parsec kilometer meter centimeter millimeter micrometer nanometer angstrom fermi
Command /remoll/beam_x0
---- available only in worker thread
Guidance :
beam initial position in x (horizontal)
Parameter : value
Parameter type : d
Omittable : False
Parameter : Unit
Parameter type : s
Omittable : True
Default value : cm
Candidates : pc km m cm mm um nm Ang fm parsec kilometer meter centimeter millimeter micrometer nanometer angstrom fermi
Command /remoll/beam_y0
---- available only in worker thread
Guidance :
beam initial position in y (vertical)
Parameter : value
Parameter type : d
Omittable : False
Parameter : Unit
Parameter type : s
Omittable : True
Default value : cm
Candidates : pc km m cm mm um nm Ang fm parsec kilometer meter centimeter millimeter micrometer nanometer angstrom fermi
Command /remoll/beam_ph0
---- available only in worker thread
Guidance :
beam initial direction in x (horizontal)
Parameter : value
Parameter type : d
Omittable : False
Parameter : Unit
Parameter type : s
Omittable : True
Default value : deg
Candidates : rad mrad deg radian milliradian degree
Command /remoll/beam_th0
---- available only in worker thread
Guidance :
beam initial direction in y (vertical)
Parameter : value
Parameter type : d
Omittable : False
Parameter : Unit
Parameter type : s
Omittable : True
Default value : deg
Candidates : rad mrad deg radian milliradian degree
Command /remoll/beam_corrph
---- available only in worker thread
Guidance :
beam correlated angle (horizontal)
Parameter : value
Parameter type : d
Omittable : False
Parameter : Unit
Parameter type : s
Omittable : True
Default value : deg
Candidates : rad mrad deg radian milliradian degree
Command /remoll/beam_corrth
---- available only in worker thread
Guidance :
beam correlated angle (vertical)
Parameter : value
Parameter type : d
Omittable : False
Parameter : Unit
Parameter type : s
Omittable : True
Default value : deg
Candidates : rad mrad deg radian milliradian degree
Command /remoll/beam_dph
---- available only in worker thread
Guidance :
beam gaussian spread in x (horizontal)
Parameter : value
Parameter type : d
Omittable : False
Parameter : Unit
Parameter type : s
Omittable : True
Default value : deg
Candidates : rad mrad deg radian milliradian degree
Command /remoll/beam_dth
---- available only in worker thread
Guidance :
beam gaussian spread in y (vertical)
Parameter : value
Parameter type : d
Omittable : False
Parameter : Unit
Parameter type : s
Omittable : True
Default value : deg
Candidates : rad mrad deg radian milliradian degree
Command directory path : /remoll/geometry/
Guidance :
Remoll geometry properties
Sub-directories :
/remoll/geometry/userlimits/ Remoll geometry properties
Commands :
setfile * Set geometry GDML file
verbose * Set geometry verbose level
validate * Set GMDL validate flag
overlapcheck * Set GMDL overlap check flag
load * Reload the geometry
printelements * Print the elements
printmaterials * Print the materials
printgeometry * Print the geometry tree
printoverlaps * Print the geometry overlap
Command /remoll/geometry/setfile
Guidance :
Set geometry GDML file
Parameter : arg
Parameter type : s
Omittable : False
Command /remoll/geometry/verbose
Guidance :
Set geometry verbose level
Parameter : value
Parameter type : i
Omittable : False
Command /remoll/geometry/validate
Guidance :
Set GMDL validate flag
Parameter : value
Parameter type : b
Omittable : False
Default value : true
Command /remoll/geometry/overlapcheck
Guidance :
Set GMDL overlap check flag
Parameter : value
Parameter type : b
Omittable : False
Default value : true
Command /remoll/geometry/load
Guidance :
Reload the geometry
Parameter : arg
Parameter type : s
Omittable : False
Command /remoll/geometry/printelements
Guidance :
Print the elements
Command /remoll/geometry/printmaterials
Guidance :
Print the materials
Command /remoll/geometry/printgeometry
Guidance :
Print the geometry tree
Parameter : arg
Parameter type : s
Omittable : False
Default value : false
Command /remoll/geometry/printoverlaps
Guidance :
Print the geometry overlap
Command directory path : /remoll/geometry/userlimits/
Guidance :
Remoll geometry properties
Sub-directories :
Commands :
usermaxallowedstep * Set user limit MaxAllowedStep for logical volume
usermaxtracklength * Set user limit MaxTrackLength for logical volume
usermaxtime * Set user limit MaxTime for logical volume
userminekine * Set user limit MinEkine for logical volume
userminrange * Set user limit MinRange for logical volume
Command /remoll/geometry/userlimits/usermaxallowedstep
Guidance :
Set user limit MaxAllowedStep for logical volume
Parameter : arg
Parameter type : s
Omittable : False
Parameter : arg
Parameter type : s
Omittable : False
Command /remoll/geometry/userlimits/usermaxtracklength
Guidance :
Set user limit MaxTrackLength for logical volume
Parameter : arg
Parameter type : s
Omittable : False
Parameter : arg
Parameter type : s
Omittable : False
Command /remoll/geometry/userlimits/usermaxtime
Guidance :
Set user limit MaxTime for logical volume
Parameter : arg
Parameter type : s
Omittable : False
Parameter : arg
Parameter type : s
Omittable : False
Command /remoll/geometry/userlimits/userminekine
Guidance :
Set user limit MinEkine for logical volume
Parameter : arg
Parameter type : s
Omittable : False
Parameter : arg
Parameter type : s
Omittable : False
Command /remoll/geometry/userlimits/userminrange
Guidance :
Set user limit MinRange for logical volume
Parameter : arg
Parameter type : s
Omittable : False
Parameter : arg
Parameter type : s
Omittable : False
Command directory path : /remoll/kryptonite/
Guidance :
Remoll kryptonite properties
Sub-directories :
Commands :
verbose * Set verbose level
set * Treat materials as kryptonite
enable * Treat materials as kryptonite
disable * Treat materials as regular
add * Add specified material to list of kryptonite candidates
list * List kryptonite candidate materials
Command /remoll/kryptonite/verbose
Guidance :
Set verbose level
Parameter : arg
Parameter type : s
Omittable : False
Command /remoll/kryptonite/set
Guidance :
Treat materials as kryptonite
Parameter : arg
Parameter type : s
Omittable : False
Command /remoll/kryptonite/enable
Guidance :
Treat materials as kryptonite
Command /remoll/kryptonite/disable
Guidance :
Treat materials as regular
Command /remoll/kryptonite/add
Guidance :
Add specified material to list of kryptonite candidates
Parameter : arg
Parameter type : s
Omittable : False
Command /remoll/kryptonite/list
Guidance :
List kryptonite candidate materials
Command directory path : /remoll/parallel/
Guidance :
Remoll parallel geometry properties
Sub-directories :
Commands :
setfile * Set parallel geometry GDML file
verbose * Set geometry verbose level
validate * Set GMDL validate flag
overlapcheck * Set GMDL overlap check flag
Command /remoll/parallel/setfile
Guidance :
Set parallel geometry GDML file
Parameter : arg
Parameter type : s
Omittable : False
Command /remoll/parallel/verbose
Guidance :
Set geometry verbose level
Parameter : value
Parameter type : i
Omittable : False
Command /remoll/parallel/validate
Guidance :
Set GMDL validate flag
Parameter : value
Parameter type : b
Omittable : False
Default value : true
Command /remoll/parallel/overlapcheck
Guidance :
Set GMDL overlap check flag
Parameter : value
Parameter type : b
Omittable : False
Default value : true
Command directory path : /remoll/physlist/
Guidance :
Remoll physics list properties
Sub-directories :
/remoll/physlist/parallel/ Remoll parallel physics properties
/remoll/physlist/optical/ Remoll optical physics properties
/remoll/physlist/steplimiter/ Remoll step limiter properties
Commands :
verbose * Set physics list verbose level
register * Register reference physics list
list * List reference physics lists
Command /remoll/physlist/verbose
Guidance :
Set physics list verbose level
Parameter : arg
Parameter type : s
Omittable : False
Command /remoll/physlist/register
Guidance :
Register reference physics list
Parameter : arg
Parameter type : s
Omittable : False
Command /remoll/physlist/list
Guidance :
List reference physics lists
Command directory path : /remoll/physlist/parallel/
Guidance :
Remoll parallel physics properties
Sub-directories :
Commands :
enable * Enable parallel physics
disable * Disable parallel physics
Command /remoll/physlist/parallel/enable
Guidance :
Enable parallel physics
Command /remoll/physlist/parallel/disable
Guidance :
Disable parallel physics
Command directory path : /remoll/physlist/optical/
Guidance :
Remoll optical physics properties
Sub-directories :
Commands :
enable * Enable optical physics
disable * Disable optical physics
Command /remoll/physlist/optical/enable
Guidance :
Enable optical physics
Command /remoll/physlist/optical/disable
Guidance :
Disable optical physics
Command directory path : /remoll/physlist/steplimiter/
Guidance :
Remoll step limiter properties
Sub-directories :
Commands :
enable * Enable step limiter
disable * Disable step limiter
Command /remoll/physlist/steplimiter/enable
Guidance :
Enable step limiter
Command /remoll/physlist/steplimiter/disable
Guidance :
Disable step limiter
Command directory path : /remoll/SD/
Guidance :
Remoll SD properties
Sub-directories :
Commands :
enable * Enable recording of hits in specified detectors
disable * Disable recording of hits in specified detectors
enable_all * Enable recording of hits in all detectors
disable_all * Disable recording of hits in all detectors
enable_range * Enable recording of hits in range of detectors
disable_range * Disable recording of hits in range of detectors
print_all * Print all detectors
detect * Set detector type
Command /remoll/SD/enable
Guidance :
Enable recording of hits in specified detectors
Parameter : arg
Parameter type : s
Omittable : False
Command /remoll/SD/disable
Guidance :
Disable recording of hits in specified detectors
Parameter : arg
Parameter type : s
Omittable : False
Command /remoll/SD/enable_all
Guidance :
Enable recording of hits in all detectors
Command /remoll/SD/disable_all
Guidance :
Disable recording of hits in all detectors
Command /remoll/SD/enable_range
Guidance :
Enable recording of hits in range of detectors
Parameter : arg
Parameter type : s
Omittable : False
Command /remoll/SD/disable_range
Guidance :
Disable recording of hits in range of detectors
Parameter : arg
Parameter type : s
Omittable : False
Command /remoll/SD/print_all
Guidance :
Print all detectors
Command /remoll/SD/detect
Guidance :
Set detector type
Parameter : arg
Parameter type : s
Omittable : False
Parameter : arg
Parameter type : s
Omittable : False
Command directory path : /remoll/field/
Guidance :
Remoll global field properties
Sub-directories :
Commands :
equationtype * Set equation type:
0: B-field, no spin (default);
2: B-field, with spin
steppertype * Set stepper type:
0: ExplicitEuler;
1: ImplicitEuler;
2: SimpleRunge;
3: SimpleHeum;
4: ClassicalRK4 (default);
5: CashKarpRKF45
print * Print the accuracy parameters
epsmin * Set the minimum epsilon of the field propagator
epsmax * Set the maximum epsilon of the field propagator
minstep * Set the minimum step of the chord finder
deltachord * Set delta chord for the chord finder
deltaonestep * Set delta one step for the field manager
deltaintersection * Set delta intersection for the field manager
Command /remoll/field/equationtype
Guidance :
Set equation type:
0: B-field, no spin (default);
2: B-field, with spin
Parameter : arg
Parameter type : s
Omittable : False
Command /remoll/field/steppertype
Guidance :
Set stepper type:
0: ExplicitEuler;
1: ImplicitEuler;
2: SimpleRunge;
3: SimpleHeum;
4: ClassicalRK4 (default);
5: CashKarpRKF45
Parameter : arg
Parameter type : s
Omittable : False
Command /remoll/field/print
Guidance :
Print the accuracy parameters
Command /remoll/field/epsmin
Guidance :
Set the minimum epsilon of the field propagator
Parameter : value
Parameter type : d
Omittable : False
Command /remoll/field/epsmax
Guidance :
Set the maximum epsilon of the field propagator
Parameter : value
Parameter type : d
Omittable : False
Command /remoll/field/minstep