ATLAS Offline Software
Loading...
Searching...
No Matches
JetEventInfo.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef JETCALIBTOOLS_JETEVENTINFO_H
6#define JETCALIBTOOLS_JETEVENTINFO_H
7
9
10 public:
13 virtual ~JetEventInfo() { }
14
15 void setRho(double rho) { m_rho = rho; }
16 void setMu(double mu) { m_mu = mu; }
17 void setNPV(double NPV) { m_npv = NPV; }
18 void setNjet(double nJet) { m_nJet = nJet; }
19 void setPVIndex(int PVindex) { m_PVindex = PVindex; }
20 void setRunNumber(UInt_t RunNumber) { m_runNumber = RunNumber; }
21 void setBcidDistanceFromFront(Int_t BcidDistanceFromFront) { m_bcidDistanceFromFront = BcidDistanceFromFront; }
22 void setBcidGapBeforeTrain(Int_t BcidGapBeforeTrain) { m_bcidGapBeforeTrain = BcidGapBeforeTrain; }
23 void setBcidGapBeforeTrainMinus12(Int_t BcidGapBeforeTrainMinus12) { m_bcidGapBeforeTrainMinus12 = BcidGapBeforeTrainMinus12; }
24
25
26 double rho() { return m_rho; }
27 double mu() { return m_mu; }
28 double NPV() { return m_npv; }
29 int nJet() { return m_nJet; }
30 int PVIndex() { return m_PVindex; }
31 UInt_t runNumber() { return m_runNumber; }
35
36 private:
37 //bool m_filled;
38 double m_rho;
39 double m_mu;
40 double m_npv;
41 int m_nJet;
47
48};
49
50#endif //> !JETCALIBTOOLS_JETEVENTINFO_H
void setBcidDistanceFromFront(Int_t BcidDistanceFromFront)
Int_t m_bcidGapBeforeTrainMinus12
Int_t bcidGapBeforeTrainMinus12()
UInt_t runNumber()
Int_t m_bcidGapBeforeTrain
virtual ~JetEventInfo()
double rho()
void setRho(double rho)
UInt_t m_runNumber
Int_t m_bcidDistanceFromFront
Int_t bcidDistanceFromFront()
void setBcidGapBeforeTrainMinus12(Int_t BcidGapBeforeTrainMinus12)
Int_t bcidGapBeforeTrain()
void setMu(double mu)
void setPVIndex(int PVindex)
double mu()
double NPV()
void setRunNumber(UInt_t RunNumber)
void setBcidGapBeforeTrain(Int_t BcidGapBeforeTrain)
void setNjet(double nJet)
void setNPV(double NPV)