Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions Common/CCDB/EventSelectionParams.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.

#ifndef EventSelectionParams_H
#define EventSelectionParams_H
#ifndef COMMON_CCDB_EVENTSELECTIONPARAMS_H_
#define COMMON_CCDB_EVENTSELECTIONPARAMS_H_

#include <Rtypes.h>
#include <TMath.h>
Expand Down Expand Up @@ -65,7 +65,7 @@ using namespace evsel;
class EventSelectionParams
{
public:
EventSelectionParams(int system = 0, int run = 2);
explicit EventSelectionParams(int system = 0, int run = 2);
void DisableOutOfBunchPileupCuts();
void SetOnVsOfParams(float newV0MOnVsOfA, float newV0MOnVsOfB, float newSPDOnVsOfA, float newSPDOnVsOfB);
bool* GetSelection(int iSelection);
Expand Down Expand Up @@ -114,10 +114,10 @@ class EventSelectionParams
float fZNCBGlower = 5.0; // ns
float fZNCBGupper = 100.0; // ns

float fT0ABBlower = -1.0; // ns
float fT0ABBupper = 1.0; // ns
float fT0CBBlower = -1.0; // ns
float fT0CBBupper = 1.0; // ns
float fT0ABBlower = -2.0; // ns
float fT0ABBupper = 2.0; // ns
float fT0CBBlower = -2.0; // ns
float fT0CBBupper = 2.0; // ns
float fT0ABGlower = 32.7; // ns
float fT0ABGupper = 32.8; // ns
float fT0CBGlower = 32.7; // ns
Expand All @@ -138,4 +138,4 @@ class EventSelectionParams
ClassDefNV(EventSelectionParams, 3)
};

#endif
#endif // COMMON_CCDB_EVENTSELECTIONPARAMS_H_
Loading