Skip to content

Commit

Permalink
python 2to3 tool lib2to3.fixes.fix_input
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlange6 committed Jun 3, 2018
1 parent cb5b360 commit f1732c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions IOMC/EventVertexGenerators/test/calculate_beamwidth.py
Expand Up @@ -16,9 +16,9 @@

import math

beam = input("beam energy in GeV: ")
betastar = input("beta-star in m: ")
normemittance = input("normalized emittance in m: ")
beam = eval(input("beam energy in GeV: "))
betastar = eval(input("beta-star in m: "))
normemittance = eval(input("normalized emittance in m: "))

gamma = beam/0.9383

Expand Down

0 comments on commit f1732c8

Please sign in to comment.