From ddd7461f226ded053c408e8c488cca67dc915155 Mon Sep 17 00:00:00 2001 From: gac-x04sa Date: Wed, 22 Aug 2018 14:13:50 +0200 Subject: [PATCH] Script execution --- script/test/TestFourcvTiny.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/script/test/TestFourcvTiny.py b/script/test/TestFourcvTiny.py index 0fa22df..747164c 100644 --- a/script/test/TestFourcvTiny.py +++ b/script/test/TestFourcvTiny.py @@ -29,7 +29,7 @@ class FourCircleX04SA_V(YouGeometry): ################################################################################################### #alpha, delta, gamma, omegaV -setup_diff(fourcv, energy, FourCircleX04SA_V(), ("mu", "delta", "nu", "eta")) +setup_diff(fourcv, energy, FourCircleX04SA_V(), ("mu", "delta", "gam", "eta")) print_axis_setup() """ @@ -44,10 +44,10 @@ setup_axis('delta', delta.getMinValue(), 90) #delta.getMaxValue()) setup_axis('gamma', gamma.getMinValue(), gamma.getMaxValue()) setup_axis('omegaV', omegaV.getMinValue(), omegaV.getMaxValue()) """ -setup_axis('mu', alpha.getMinValue(), alpha.getMaxValue()) -setup_axis('delta', delta.getMinValue(), 90) #delta.getMaxValue()) -setup_axis('nu', gamma.getMinValue(), gamma.getMaxValue()) -setup_axis('eta', omegaV.getMinValue(), omegaV.getMaxValue()) +setup_axis(alpha, alpha.getMinValue(), alpha.getMaxValue()) +setup_axis(delta, delta.getMinValue(), 90) #delta.getMaxValue()) +setup_axis(gamma, gamma.getMinValue(), gamma.getMaxValue()) +setup_axis(omegaV, omegaV.getMinValue(), omegaV.getMaxValue())