6 |
|
#ifndef _MAIN_H__ |
7 |
|
#define _MAIN_H__ |
8 |
|
|
9 |
– |
|
9 |
|
#ifdef linux |
10 |
|
#include <GL/gl.h> |
11 |
|
#include <GL/glu.h> |
12 |
< |
#include "../interface/glut.h" |
13 |
< |
#else |
14 |
< |
#define _CRT_SECURE_NO_DEPRECATE 1 |
15 |
< |
#include <windows.h> |
12 |
> |
#include "Includes/GLUT/glut.h" |
13 |
> |
#include <ext/hash_map> |
14 |
> |
using namespace __gnu_cxx; |
15 |
> |
typedef hash_map<unsigned int, char*, hash<unsigned int>, equal_to<unsigned int> > HASH_Map; |
16 |
> |
#else |
17 |
> |
#include <windows.h> |
18 |
|
#include <gl/gl.h> |
19 |
|
#include <gl/glu.h> |
20 |
|
#include <gl/glut.h> |
23 |
|
#pragma comment (lib,"opengl32.lib") |
24 |
|
#pragma comment (lib,"glut.lib") |
25 |
|
#pragma comment (lib,"glut32.lib") |
26 |
+ |
|
27 |
+ |
#include <hash_map> |
28 |
+ |
using namespace stdext; |
29 |
+ |
typedef hash_map<unsigned int, char*, hash_compare<unsigned int, std::less<unsigned int> > > HASH_Map; |
30 |
|
#endif |
31 |
+ |
|
32 |
+ |
|
33 |
+ |
HASH_Map test; |
34 |
+ |
|
35 |
+ |
#include <time.h> |
36 |
+ |
time_t start; |
37 |
+ |
time_t end; |
38 |
|
|
39 |
|
#include <stdio.h> |
40 |
|
#include <math.h> |
41 |
|
|
42 |
< |
#include "../interface/SimEvent.h" |
43 |
< |
#include "../interface/Geometry.h" |
42 |
> |
#include "Includes/FROG/FROG_Objects.h" |
43 |
> |
#include "Includes/FROG/FROG_Events.h" |
44 |
> |
#include "Includes/FROG/FROG_Geometry.h" |
45 |
> |
|
46 |
> |
#include "Includes/FROG/FROG_Element_Tools.h" |
47 |
> |
|
48 |
> |
#include "Includes/FROG/Logo.h" |
49 |
> |
#include "Includes/FROG/Texture.h" |
50 |
> |
#include "Includes/FROG/FROG_ReadCards.h" |
51 |
> |
#include "Includes/FROG/FROG_Struct.h" |
52 |
> |
#include "Includes/FROG/FROG_Camera.h" |
53 |
|
|
33 |
– |
#include "DrawPrimitive.h" |
34 |
– |
#include "ScreenShot.h" |
35 |
– |
#include "Logo.h" |
36 |
– |
#include "Texture.h" |
37 |
– |
#include "ReadCards.h" |
38 |
– |
#include "FROG_Struct.h" |
54 |
|
|
55 |
|
int SAVE_WINDOW_W = 800; |
56 |
|
int SAVE_WINDOW_H = 600; |
57 |
|
int SAVE_WINDOW_X = 10; |
58 |
|
int SAVE_WINDOW_Y = 10; |
59 |
|
|
60 |
< |
bool FULLSCREEN = false; |
61 |
< |
int WINDOW_WIDTH = 800; |
62 |
< |
int WINDOW_HEIGHT = 600; |
63 |
< |
int SCREENSHOT = 0; |
60 |
> |
|
61 |
> |
bool FULLSCREEN = false; |
62 |
> |
int WINDOW_WIDTH = 800; |
63 |
> |
int WINDOW_HEIGHT = 600; |
64 |
> |
int SCREENSHOT = 0; |
65 |
> |
char* SCREENSHOT_FORMAT = new char[255]; |
66 |
|
|
67 |
|
int TEMP_I = 0; |
68 |
|
|
69 |
< |
float CAM_R = 700; |
53 |
< |
float CAM_tx = 0.0; |
54 |
< |
float CAM_ty = 0.0; |
55 |
< |
|
56 |
< |
int CMS_TRACKER_RADIUS = 129; |
57 |
< |
int CMS_TRACKER_LENGTH = 300; |
58 |
< |
|
59 |
< |
int TRACKING_RADIUS = 129;//295; |
60 |
< |
int TRACKING_LENGTH = 300;//645; |
61 |
< |
|
62 |
< |
float PT_CUTOFF = 1.0; |
63 |
< |
double EECAL_CUTOFF[3] = {0.2,0.6,0.0001}; |
64 |
< |
double EHCAL_CUTOFF[4] = {1.5,1.5,0.5,5.0}; |
69 |
> |
FROG_Camera Cam; |
70 |
|
|
71 |
|
bool MouseStates[3]; |
72 |
|
|
68 |
– |
std::vector<GLuint> theSimTracks; |
69 |
– |
GLuint theGeomMuon[3]; |
70 |
– |
GLuint theGeomMuonInEvent; |
71 |
– |
GLuint theGeomTracker[6]; |
72 |
– |
GLuint theGeomTrackerInEvent; |
73 |
– |
GLuint theGeomEcal[3]; |
74 |
– |
GLuint theGeomEcalInEvent; |
75 |
– |
GLuint theGeomHcal[4]; |
76 |
– |
GLuint theGeomHcalInEvent; |
77 |
– |
|
73 |
|
GLuint LogoTexture; |
74 |
|
|
75 |
|
double t = 0; |
76 |
|
|
77 |
|
std::string inputVisFile; |
78 |
< |
std::string inputTrackerGeom; |
79 |
< |
std::string inputEcalGeom; |
80 |
< |
std::string inputHcalGeom; |
81 |
< |
std::string inputMuonGeom; |
82 |
< |
|
83 |
< |
MySimEvent* event; |
84 |
< |
MySimEvents* events; |
85 |
< |
|
91 |
< |
Geometry* geom; |
92 |
< |
|
93 |
< |
char gTracker = 0; |
94 |
< |
char gEcal = 0; |
95 |
< |
char gHcal = 0; |
96 |
< |
char gMuon = 0; |
97 |
< |
char gSim = 2; |
78 |
> |
std::vector<std::string> inputGeom; |
79 |
> |
|
80 |
> |
FROG_Events* events; |
81 |
> |
FROG_Element_Event* event; |
82 |
> |
|
83 |
> |
FROG_Geometry* geom; |
84 |
> |
|
85 |
> |
char gSim = 0; |
86 |
|
char gReco = 15; |
87 |
|
|
88 |
< |
int mTrackI = -1; |
88 |
> |
unsigned int mCLicked_DetId = 0; |
89 |
> |
bool mDisplayMother = false; |
90 |
> |
int mObj_I = -1; |
91 |
> |
int mColl_I = -1; |
92 |
|
bool mLoading = true; |
93 |
|
int mLoading_I = 0; |
94 |
|
|
96 |
|
|
97 |
|
bool mHelpScreen= false; |
98 |
|
bool mRotate = true; |
108 |
– |
float mDt = 0.005f; |
99 |
|
|
100 |
|
|
101 |
< |
GLint Menu_Geom_Tracker = 0; |
102 |
< |
GLint Menu_Geom_Ecal = 0; |
103 |
< |
GLint Menu_Geom_Hcal = 0; |
104 |
< |
GLint Menu_Geom_Muon = 0; |
115 |
< |
GLint Menu_Geom = 0; |
116 |
< |
GLint Menu_SimEvent = 0; |
117 |
< |
GLint Menu_RecoEvent = 0; |
118 |
< |
GLint Menu_Main = 0; |
101 |
> |
bool stateChanged = false; |
102 |
> |
float mDt = 0.005f; |
103 |
> |
|
104 |
> |
bool print_FrameWork = false; |
105 |
|
|
106 |
|
WidthAndColor WaC_BackGround = {1.0 , 0.0 , 1.0 , 0.0 , 1.0}; |
107 |
|
WidthAndColor WaC_Txt = {1.0 , 0.0 , 1.0 , 1.0 , 1.0}; |
108 |
|
WidthAndColor WaC_CMS_Framework = {1.0 , 1.0 , 0.5 , 1.0 , 0.3}; |
109 |
|
WidthAndColor WaC_LHC_Axis = {3.0 , 1.0 , 0.5 , 1.0 , 0.3}; |
110 |
< |
WidthAndColor WaC_Default_SimTrack = {2.0 , 0.0 , 1.0 , 1.0 , 1.0}; |
111 |
< |
WidthAndColor WaC_Selected_SimTrack = {2.0 , 1.0 , 1.0 , 0.0 , 1.0}; |
110 |
> |
WidthAndColor WaC_Selected_Object = {2.0 , 1.0 , 1.0 , 0.0 , 1.0}; |
111 |
> |
|
112 |
> |
FROG_ReadCards* Card; |
113 |
|
|
127 |
– |
void DrawTrack(MySimTrack* track, MySimVertex* vertex1, MySimVertex* vertex2); |
114 |
|
void reshape (int w, int h); |
115 |
|
void display(); |
116 |
< |
void initGeomMuon(); |
131 |
< |
void initGeomMuonInEvent(); |
132 |
< |
void initGeomTracker(); |
133 |
< |
void initGeomTrackerInEvent(); |
134 |
< |
void initGeomEcal(); |
135 |
< |
void initGeomEcalInEvent(); |
136 |
< |
void initGeomHcal(); |
137 |
< |
void initGeomHcalInEvent(); |
138 |
< |
|
139 |
< |
void initSimTrack(); |
140 |
< |
void init(); |
141 |
< |
void menu_callback(int value); |
142 |
< |
void menu_create(); |
116 |
> |
|
117 |
|
void LoadCard(const char* inputCard ); |
118 |
+ |
void gl_select(int x, int y); |
119 |
+ |
void list_hits(GLint hits, GLuint *names); |
120 |
|
|
121 |
|
#endif |
122 |
|
|