| 21 |
|
|
| 22 |
#include <GLTables.h> |
#include <GLTables.h> |
| 23 |
|
|
| 24 |
#include <cTle.h> |
#include <sgp4.h> |
| 25 |
|
|
| 26 |
using namespace pamela; |
using namespace pamela; |
| 27 |
|
|
| 49 |
UInt_t tsync; |
UInt_t tsync; |
| 50 |
UInt_t toffset; |
UInt_t toffset; |
| 51 |
// |
// |
| 52 |
// Long64_t olderthan; |
// Long64_t olderthan; |
| 53 |
|
UInt_t dworbit; |
| 54 |
// |
// |
| 55 |
UInt_t BOOTNO; |
UInt_t BOOTNO; |
| 56 |
UInt_t obt0; |
UInt_t obt0; |
| 82 |
// Path to tle file |
// Path to tle file |
| 83 |
TString tlefilename; |
TString tlefilename; |
| 84 |
|
|
| 85 |
// flag to control profiler actions |
// flag to control profiler actions |
| 86 |
Bool_t INSERT_RAW; |
Bool_t INSERT_RAW; |
| 87 |
Bool_t INSERT_ROOT; |
Bool_t INSERT_ROOT; |
| 88 |
Bool_t VALIDATE; |
Bool_t VALIDATE; |
| 89 |
|
Bool_t NOFRAG; |
| 90 |
TDatime *clean_time; |
|
| 91 |
|
TDatime *clean_time; |
| 92 |
|
|
| 93 |
// |
// |
| 94 |
typedef std::list<const char*> pcksList; |
typedef std::list<const char*> pcksList; |
| 95 |
static void getPacketsNames(pcksList &pcksNames){ |
static void getPacketsNames(pcksList &pcksNames){ |
| 151 |
void FillClass(Bool_t mishead, Bool_t mistrail, UInt_t firstev, UInt_t lastev); |
void FillClass(Bool_t mishead, Bool_t mistrail, UInt_t firstev, UInt_t lastev); |
| 152 |
void HandleTRK_CALIB(Bool_t pk1, Bool_t pk2); |
void HandleTRK_CALIB(Bool_t pk1, Bool_t pk2); |
| 153 |
// |
// |
| 154 |
|
void RemoveCALIBS(); |
| 155 |
|
void ValidationOFF(); |
| 156 |
|
void ReArrangeRUNS(); |
| 157 |
|
void RemoveRUNS(); |
| 158 |
|
void RemoveFILES(); |
| 159 |
|
// |
| 160 |
Bool_t IsDebug(){return(debug);}; |
Bool_t IsDebug(){return(debug);}; |
| 161 |
Bool_t IsRunAlreadyInserted(); |
Bool_t IsRunAlreadyInserted(); |
| 162 |
Bool_t IsRunConsistent(Bool_t mishead, Bool_t mistrail, UInt_t &firstev, UInt_t &lastev); |
Bool_t IsRunConsistent(Bool_t mishead, Bool_t mistrail, UInt_t &firstev, UInt_t &lastev); |
| 167 |
// |
// |
| 168 |
ULong64_t OBT(UInt_t obt); |
ULong64_t OBT(UInt_t obt); |
| 169 |
// |
// |
| 170 |
|
UInt_t AssignRunID(); |
| 171 |
|
|
| 172 |
// GL_TLE related functions |
// GL_TLE related functions |
| 173 |
int insertTle(cTle*); |
int insertTle(cTle*); |
| 195 |
void SetNOBOOT(Bool_t noboot); |
void SetNOBOOT(Bool_t noboot); |
| 196 |
void SetOlderThan(Long64_t oldthan); |
void SetOlderThan(Long64_t oldthan); |
| 197 |
void SetTLEPath(TString str); |
void SetTLEPath(TString str); |
| 198 |
|
void SetOrbitNo(); |
| 199 |
|
void SetNoFrag(Bool_t nf); |
| 200 |
// |
// |
| 201 |
Bool_t SetID_RAW(); |
Bool_t SetID_RAW(); |
| 202 |
// |
// |
| 222 |
TString GetRootName(){return(filerootname);}; |
TString GetRootName(){return(filerootname);}; |
| 223 |
TString GetRawName(){return(filerawname);}; |
TString GetRawName(){return(filerawname);}; |
| 224 |
|
|
| 225 |
const char* GetCleanTime(){return clean_time->AsSQLString();}; |
const char* GetCleanTime(){return clean_time->AsSQLString();}; |
| 226 |
// |
// |
| 227 |
// Functions |
// Functions |
| 228 |
// |
// |
| 235 |
Int_t insertTRK_CALIB(); |
Int_t insertTRK_CALIB(); |
| 236 |
Int_t insertS4_CALIB(); |
Int_t insertS4_CALIB(); |
| 237 |
Int_t CleanGL_RUN_FRAGMENTS(); |
Int_t CleanGL_RUN_FRAGMENTS(); |
| 238 |
|
Int_t CleanGL_RUN_FRAGMENTS(TString fcleanfile); |
| 239 |
Int_t ValidateRuns(); |
Int_t ValidateRuns(); |
| 240 |
|
Int_t ValidateRuns(TString valfile); |
| 241 |
Int_t assignVALIDATION(UInt_t ,Bool_t ); |
Int_t assignVALIDATION(UInt_t ,Bool_t ); |
| 242 |
|
Int_t removeFile(TString rootfilename); |
| 243 |
// |
// |
| 244 |
// void OpenFile(); |
// void OpenFile(); |
| 245 |
void CheckValidate(Long64_t olderthan); |
void CheckValidate(Long64_t olderthan); |
| 247 |
void CheckFile(); |
void CheckFile(); |
| 248 |
// |
// |
| 249 |
|
|
| 250 |
|
Bool_t NoFrag(){return(NOFRAG);}; |
| 251 |
Bool_t InsertRoot(){return(INSERT_ROOT);}; |
Bool_t InsertRoot(){return(INSERT_ROOT);}; |
| 252 |
Bool_t InsertRaw(){return(INSERT_RAW);}; |
Bool_t InsertRaw(){return(INSERT_RAW);}; |
| 253 |
Bool_t Validate(){return(VALIDATE);}; |
Bool_t Validate(){return(VALIDATE);}; |