24 |
#include <NDLevel2.h> |
#include <NDLevel2.h> |
25 |
#include <AcLevel2.h> |
#include <AcLevel2.h> |
26 |
#include <OrbitalInfo.h> |
#include <OrbitalInfo.h> |
27 |
|
#include <InclinationInfo.h> // EMILIANO, now this library is included in libDarthVader.so |
28 |
|
// and the header installed in $PAM_INC. If you get the |
29 |
|
// error "Cannot find InclinationInfo.h" update your DV installation |
30 |
#include <RunInfo.h> |
#include <RunInfo.h> |
31 |
#include <GLTables.h> |
#include <GLTables.h> |
32 |
|
|
377 |
Bool_t ISGP; // GP simulation (...sort of patch, to skip OBT check, since OrbitalInfo is sometime missing) |
Bool_t ISGP; // GP simulation (...sort of patch, to skip OBT check, since OrbitalInfo is sometime missing) |
378 |
Int_t SELLI; // tree of selected events (there is a selection list) |
Int_t SELLI; // tree of selected events (there is a selection list) |
379 |
|
|
380 |
|
Bool_t DBG; |
381 |
|
|
382 |
void Initialize(); |
void Initialize(); |
383 |
|
|
384 |
|
|
474 |
OrbitalInfo *GetOrbitalInfo(){ return orb_obj; }; |
OrbitalInfo *GetOrbitalInfo(){ return orb_obj; }; |
475 |
GL_RUN *GetRunInfo() { return run_obj; }; |
GL_RUN *GetRunInfo() { return run_obj; }; |
476 |
SoftInfo *GetSoftInfo() { return soft_obj; }; // Emiliano |
SoftInfo *GetSoftInfo() { return soft_obj; }; // Emiliano |
477 |
GPamela *GetGPamela() { return gp_obj; }; |
GPamela *GetGPamela() { return gp_obj; }; |
478 |
|
|
479 |
// ============================================== |
// ============================================== |
480 |
// methods to retrieve subdetectors stored tracks |
// methods to retrieve subdetectors stored tracks |
543 |
|
|
544 |
void SetGP(Bool_t tt){ISGP=tt;}; |
void SetGP(Bool_t tt){ISGP=tt;}; |
545 |
|
|
546 |
|
void SetDebug(Bool_t set){ DBG=set; }; |
547 |
|
|
548 |
ClassDef(PamLevel2,1); |
ClassDef(PamLevel2,1); |
549 |
}; |
}; |