47 |
|
int WINDOW_HEIGHT = 600; |
48 |
|
int SCREENSHOT = 0; |
49 |
|
|
50 |
+ |
int TEMP_I = 0; |
51 |
+ |
|
52 |
|
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 = 280; |
57 |
> |
int CMS_TRACKER_LENGTH = 300; |
58 |
|
|
59 |
|
int TRACKING_RADIUS = 129;//295; |
60 |
< |
int TRACKING_LENGTH = 280;//645; |
60 |
> |
int TRACKING_LENGTH = 300;//645; |
61 |
|
|
62 |
|
float PT_CUTOFF = 1.0; |
63 |
< |
float EHCAL_CUTOFF = 4.0; |
64 |
< |
float EECAL_CUTOFF = 4.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}; |
65 |
|
|
66 |
|
bool MouseStates[3]; |
67 |
|
|
68 |
|
std::vector<GLuint> theSimTracks; |
69 |
|
GLuint theGeomMuon[3]; |
70 |
+ |
GLuint theGeomMuonInEvent; |
71 |
|
GLuint theGeomTracker[6]; |
72 |
|
GLuint theGeomTrackerInEvent; |
73 |
|
GLuint theGeomEcal[3]; |
95 |
|
char gHcal = 0; |
96 |
|
char gMuon = 0; |
97 |
|
char gSim = 2; |
98 |
< |
char gReco = 7; |
98 |
> |
char gReco = 15; |
99 |
|
|
100 |
|
int mTrackI = -1; |
101 |
|
bool mLoading = true; |
128 |
|
void reshape (int w, int h); |
129 |
|
void display(); |
130 |
|
void initGeomMuon(); |
131 |
+ |
void initGeomMuonInEvent(); |
132 |
|
void initGeomTracker(); |
133 |
|
void initGeomTrackerInEvent(); |
134 |
|
void initGeomEcal(); |