i have defined constants in a header file

//Define constants

#define Grids 70
#define Hori_L 1.0
#define delta_x Hori_L*pow((Grids - 1), -1) //m

However when i call them in my .cc files I need to place a bracket around them (delta_x). Why is that?

Cheers