Пример #1
0
 def test_execNEST_random_xy(self):
     detector = nestpy.DetectorExample_XENON10()
     detector.Initialization()
     nestpy.execNEST(detector, 10, 'NR', 100., 120., 10., "-999, -999, 10.", "120", 1., 1, True, 1.0)
Пример #2
0
 def test_execNEST_pos(self):
     #  test with actual position [0.,0.,0.] and seed(1)
     detector = nestpy.DetectorExample_XENON10()
     detector.Initialization()
     nestpy.execNEST(detector, 10, 'NR', 100., 120., 10., "0., 0., 0.", "120.", 1., 1, False, 1.)
Пример #3
0
 def test_execNEST_pos_random_seed(self):
     # test with actual position [0.,0.,0.] and randomSeed
     detector = nestpy.DetectorExample_XENON10()
     detector.Initialization()
     nestpy.execNEST(detector, 10, 'NR', 100., 120., 10., "0., 0., 10.", "120.", 1., 1, True, 1.0)
Пример #4
0
 def test_execNEST_random_pos(self):
     # test with -1 for fObs and seed (1)
     detector = nestpy.DetectorExample_XENON10()
     detector.Initialization()
     nestpy.execNEST(detector, 10, 'NR', 100., 120., 10., "0., 0., 0.", "120.", -1., 1, False, 1.)