Exponentiation symbol in a batch file.

Asked by Sayan Kr. Das

Hi!
In the batch file for a process, if I set incoming momentum to be
p1: 1e-2

everything works normal. But if I write,

p1: 10**(-2)
or
p1: 10^(-2)

the code runs but the distributions are nonsensical.

So what should be the symbol for power?

At the end I am trying to scan over particle momentum in the logspace. So I need something like this:

p1: 10**(-7 + 5*r/4)
p2: 1e-8

Run parameter: r
Run begin: 0
Run step size: 1
Run n steps: 5

So the p1 is scanned from 1e-7 to 1e-2 in 5 steps.

Any help would be appreciated.

Question information

Language:
English Edit question
Status:
Solved
For:
CalcHEP Edit question
Assignee:
No assignee Edit question
Solved by:
Sayan Kr. Das
Solved:
Last query:
Last reply:
Revision history for this message
Sayan Kr. Das (sayankrdas2) said :
#1

When the parameter is run, the ** symbol works as expected.