#include "LumiCalc/LumiCalculator.h"
#include "LumiCalc/CoolQuery.h"
#include "LumiCalc/LumiBlockRangeContainerConverter.h"
#include "GoodRunsLists/TGoodRunsListReader.h"
#include "GoodRunsLists/TGoodRunsList.h"
#include "GoodRunsLists/TGRLCollection.h"
#include "GoodRunsLists/TMsgLogger.h"
#include "CxxUtils/checker_macros.h"
#include "cmdline.h"
#include <TROOT.h>
#include <TStopwatch.h>
#include <TString.h>
#include <TFile.h>
#include <TTree.h>
#include <iomanip>
#include <stdio.h>
#include <sys/stat.h>
#include <sys/types.h>
Go to the source code of this file.
|
| static std::vector< std::string > | tagfile |
| static std::vector< std::string > | aodfile |
| static std::vector< std::string > | xmlfile |
| static std::vector< std::string > | rootfile |
| static std::string | treename = "tree" |
| static std::string | d3pddirname = "Lumi" |
| static std::string | xmloutfile = "out.xml" |
| static std::vector< std::string > | triggerchain |
| static std::string | livetrigger |
| static std::vector< uint32_t > | runnumber |
| static std::vector< uint32_t > | lbstart |
| static std::vector< uint32_t > | lbend |
| static uint32_t | minlbstart = cool::ValidityKeyMin & 0xFFFFFFFF |
| static uint32_t | maxlbend = (cool::ValidityKeyMax & 0xFFFFFFFF)/2 |
| static uint32_t | minrunnum = (cool::ValidityKeyMin >> 32) |
| static uint32_t | maxrunnum = (cool::ValidityKeyMax >> 32) |
◆ FileExists()
| bool FileExists |
( |
const std::string & | strFilename | ) |
|
Definition at line 163 of file iLumiCalc.h.
163 {
164 struct stat stFileInfo;
165 bool blnReturn;
166 int intStat;
167
168
169 intStat =
stat(strFilename.c_str(),&stFileInfo);
170 if(intStat == 0) {
171
172
173
174
175 blnReturn = true;
176 } else {
177
178
179
180
181
182
183 blnReturn = false;
184 }
185
186 return(blnReturn);
187}
◆ logger()
◆ aodfile
| std::vector<std::string> aodfile |
|
static |
◆ d3pddirname
| std::string d3pddirname = "Lumi" |
|
static |
◆ lbend
| std::vector<uint32_t> lbend |
|
static |
◆ lbstart
| std::vector<uint32_t> lbstart |
|
static |
◆ livetrigger
◆ maxlbend
| uint32_t maxlbend = (cool::ValidityKeyMax & 0xFFFFFFFF)/2 |
|
static |
◆ maxrunnum
| uint32_t maxrunnum = (cool::ValidityKeyMax >> 32) |
|
static |
◆ minlbstart
| uint32_t minlbstart = cool::ValidityKeyMin & 0xFFFFFFFF |
|
static |
◆ minrunnum
| uint32_t minrunnum = (cool::ValidityKeyMin >> 32) |
|
static |
◆ rootfile
| std::vector<std::string> rootfile |
|
static |
◆ runnumber
| std::vector<uint32_t> runnumber |
|
static |
◆ tagfile
| std::vector<std::string> tagfile |
|
static |
◆ treename
| std::string treename = "tree" |
|
static |
◆ triggerchain
| std::vector<std::string> triggerchain |
|
static |
◆ xmlfile
| std::vector<std::string> xmlfile |
|
static |
◆ xmloutfile
| std::string xmloutfile = "out.xml" |
|
static |