Skip to content

Commit a160cf2

Browse files
committed
Fix misplaced macros
1 parent 17d87f4 commit a160cf2

1 file changed

Lines changed: 20 additions & 22 deletions

File tree

Common/Tools/EventSelectionModule.h

Lines changed: 20 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -16,29 +16,8 @@
1616
#ifndef COMMON_TOOLS_EVENTSELECTIONMODULE_H_
1717
#define COMMON_TOOLS_EVENTSELECTIONMODULE_H_
1818

19-
#include "Common/CCDB/RCTSelectionFlags.h"
20-
21-
#include <Framework/Configurable.h>
22-
#include <Framework/HistogramSpec.h>
23-
#include <Framework/Logger.h>
24-
25-
#include <TH1.h>
26-
#include <TH2.h>
27-
#include <TMath.h>
28-
#include <TString.h>
29-
30-
#include <Rtypes.h>
31-
#include <RtypesCore.h>
32-
33-
#include <algorithm>
34-
#include <bitset>
35-
#include <cstdint>
36-
#include <iterator>
37-
#include <utility>
38-
#define bitcheck(var, nbit) ((var) & (static_cast<uint32_t>(1) << (nbit)))
39-
#define bitcheck64(var, nbit) ((var) & (static_cast<uint64_t>(1) << (nbit)))
40-
4119
#include "Common/CCDB/EventSelectionParams.h"
20+
#include "Common/CCDB/RCTSelectionFlags.h"
4221
#include "Common/CCDB/TriggerAliases.h"
4322
#include "Common/Core/TableHelper.h"
4423
#include "Common/DataModel/EventSelection.h"
@@ -52,17 +31,36 @@
5231
#include <DataFormatsParameters/AggregatedRunInfo.h>
5332
#include <DataFormatsParameters/GRPLHCIFData.h>
5433
#include <Framework/AnalysisDataModel.h>
34+
#include <Framework/Configurable.h>
5535
#include <Framework/HistogramRegistry.h>
36+
#include <Framework/HistogramSpec.h>
37+
#include <Framework/Logger.h>
5638
#include <ITSMFTBase/DPLAlpideParam.h>
5739
#include <ITSMFTReconstruction/ChipMappingITS.h>
5840

41+
#include <TH1.h>
42+
#include <TH2.h>
43+
#include <TMath.h>
44+
#include <TString.h>
45+
46+
#include <Rtypes.h>
47+
#include <RtypesCore.h>
48+
49+
#include <algorithm>
50+
#include <bitset>
5951
#include <cmath>
52+
#include <cstdint>
6053
#include <cstdlib>
54+
#include <iterator>
6155
#include <limits>
6256
#include <map>
6357
#include <string>
58+
#include <utility>
6459
#include <vector>
6560

61+
#define bitcheck(var, nbit) ((var) & (static_cast<uint32_t>(1) << (nbit)))
62+
#define bitcheck64(var, nbit) ((var) & (static_cast<uint64_t>(1) << (nbit)))
63+
6664
//__________________________________________
6765
// MultModule
6866

0 commit comments

Comments
 (0)