diff options
author | Stan Seibert <stan@mtrr.org> | 2011-12-21 11:25:41 -0500 |
---|---|---|
committer | tlatorre <tlatorre@uchicago.edu> | 2021-05-09 08:42:38 -0700 |
commit | 29350829b9c4c2759aeb010da7d6f6d08687bf5d (patch) | |
tree | a2bb6b50f27c90b8e67f464cbba0c98796d1456c | |
parent | 75340bfedff45f70018900a56b68d3ec6ccd30c3 (diff) | |
download | chroma-29350829b9c4c2759aeb010da7d6f6d08687bf5d.tar.gz chroma-29350829b9c4c2759aeb010da7d6f6d08687bf5d.tar.bz2 chroma-29350829b9c4c2759aeb010da7d6f6d08687bf5d.zip |
Eliminate spurious commas in definition of photon history bits
-rw-r--r-- | chroma/event.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/chroma/event.py b/chroma/event.py index e65c543..80e5b01 100644 --- a/chroma/event.py +++ b/chroma/event.py @@ -1,13 +1,13 @@ import numpy as np # Photon history bits (see photon.h for source) -NO_HIT = 0x1 << 0, -BULK_ABSORB = 0x1 << 1, -SURFACE_DETECT = 0x1 << 2, -SURFACE_ABSORB = 0x1 << 3, -RAYLEIGH_SCATTER = 0x1 << 4, -REFLECT_DIFFUSE = 0x1 << 5, -REFLECT_SPECULAR = 0x1 << 6, +NO_HIT = 0x1 << 0 +BULK_ABSORB = 0x1 << 1 +SURFACE_DETECT = 0x1 << 2 +SURFACE_ABSORB = 0x1 << 3 +RAYLEIGH_SCATTER = 0x1 << 4 +REFLECT_DIFFUSE = 0x1 << 5 +REFLECT_SPECULAR = 0x1 << 6 NAN_ABORT = 0x1 << 31 class Vertex(object): |