Gate icon indicating copy to clipboard operation
Gate copied to clipboard

Official public repository of Gate

Results 156 Gate issues
Sort by recently updated
recently updated
newest added

In several places in the code you use a bunch of vectors to define properties, vectors from the same size that are always used together. So an important optimization should...

When I run my simulation without a set number of primaries, the simulation runs normally and I obtain a nice activity curve between the start and end time. However, when...

In order to be able to compile for MSVC I had to comment out the following line in `CMakeLists.txt`: ``` set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-shadow") ``` One should check for which compilers...

Geant4 recently introduced support for multiple threads. It would make sense to check whether one can avoid reinventing the wheel and use the code from Geant4. I have found this:...

windows

Under Visual Studio 2012 I had to remove `#include ` and replace it with ``` #if defined(_MSC_VER) #include typedef SSIZE_T ssize_t; #define snprintf _snprintf #include #endif ``` to get the...

windows

I was experiencing some problems with the OpenGL inclusion in `GateImageBox.hh`. The code needs to be reviewed and tested.

windows

The linker from Microsoft Visual Studio 2012 complained about multiple definitions of `sum`, `prod`, `opp`, `intdivint` until I removed them from `GateDMapoperators.ihh` or made sure that the code wouldn't be...

windows

The line ``` srandom(static_cast(*theRandomEngine)); ``` from `source/general/src/GateRandomEngine.cc` doesn't work under Windows (MSVC).

windows

A number of source files include `unistd.h`. That doesn't work in Visual Studio 2012.

windows