23 |
|
#pragma comment (lib,"opengl32.lib") |
24 |
|
#pragma comment (lib,"glut.lib") |
25 |
|
#pragma comment (lib,"glut32.lib") |
26 |
+ |
#pragma comment (lib,"Includes/CURL/Lib/libcurl.lib") |
27 |
|
|
28 |
|
#include <hash_map> |
29 |
|
using namespace stdext; |
30 |
|
typedef hash_map<unsigned int, char*, hash_compare<unsigned int, std::less<unsigned int> > > HASH_Map; |
31 |
|
#endif |
32 |
< |
|
32 |
> |
|
33 |
> |
bool SCREENSAVER = false; |
34 |
|
|
35 |
|
HASH_Map test; |
36 |
|
|
52 |
|
#include "Includes/FROG/FROG_ReadCards.h" |
53 |
|
#include "Includes/FROG/FROG_Struct.h" |
54 |
|
#include "Includes/FROG/FROG_Camera.h" |
55 |
+ |
#include "Includes/FROG/FROG_Net.h" |
56 |
|
|
57 |
|
|
58 |
|
int SAVE_WINDOW_W = 800; |
74 |
|
bool MouseStates[3]; |
75 |
|
|
76 |
|
GLuint LogoTexture; |
77 |
+ |
GLuint LogoTxtTexture; |
78 |
|
|
79 |
|
double t = 0; |
80 |
|
|
81 |
|
std::string inputVisFile; |
82 |
+ |
std::string inputVisFileFromCard; |
83 |
|
std::vector<std::string> inputGeom; |
84 |
|
|
85 |
+ |
int updateVisFileTime = -1; |
86 |
+ |
|
87 |
|
FROG_Events* events; |
88 |
|
FROG_Element_Event* event; |
89 |
|
|
92 |
|
char gSim = 0; |
93 |
|
char gReco = 15; |
94 |
|
|
95 |
< |
unsigned int mCLicked_DetId = 0; |
95 |
> |
unsigned int mCLicked_DetId = (unsigned int) -1; |
96 |
|
bool mDisplayMother = false; |
90 |
– |
int mObj_I = -1; |
91 |
– |
int mColl_I = -1; |
97 |
|
bool mLoading = true; |
98 |
|
int mLoading_I = 0; |
99 |
|
|
123 |
|
void gl_select(int x, int y); |
124 |
|
void list_hits(GLint hits, GLuint *names); |
125 |
|
|
126 |
+ |
char* get_char_ptr(const std::string& str); |
127 |
+ |
void* DownLoadFile(void* inputFile); |
128 |
+ |
void updateEventsFile(); |
129 |
+ |
|
130 |
+ |
|
131 |
|
#endif |
132 |
|
|