Skip to content

Commit 03a5096

Browse files
Re-arrange the repository
Clean the includes
1 parent 7fcbfee commit 03a5096

47 files changed

Lines changed: 93 additions & 79 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Common/Field/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
set(INCLUDE_DIRECTORIES
66
${CMAKE_SOURCE_DIR}
77
${CMAKE_SOURCE_DIR}/Common/Field
8+
${CMAKE_SOURCE_DIR}/Common/Field/include
89
${CMAKE_SOURCE_DIR}/header
910
)
1011

Common/Field/src/MagneticField.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
/// \brief Implementation of the MagF class
33
/// \author ruben.shahoyan@cern.ch
44

5-
#include "include/MagneticField.h"
6-
#include "include/MagneticWrapperChebyshev.h" // for MagneticWrapperChebyshev
5+
#include "MagneticField.h"
6+
#include "MagneticWrapperChebyshev.h" // for MagneticWrapperChebyshev
77
#include <TFile.h> // for TFile
88
#include <TPRegexp.h> // for TPRegexp
99
#include <TSystem.h> // for TSystem, gSystem

Common/Field/src/MagneticWrapperChebyshev.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/// \brief Implementation of the MagWrapCheb class
33
/// \author ruben.shahoyan@cern.ch 20/03/2007
44

5-
#include "include/MagneticWrapperChebyshev.h"
5+
#include "MagneticWrapperChebyshev.h"
66
#include <TArrayF.h> // for TArrayF
77
#include <TArrayI.h> // for TArrayI
88
#include <TSystem.h> // for TSystem, gSystem

DataFormats/simulation/src/MCTrack.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/// \brief Implementation of the MCTrack class
33
/// \author M. Al-Turany - June 2014
44

5-
#include "include/MCTrack.h"
5+
#include "MCTrack.h"
66

77
#include "FairLogger.h"
88
#include "TDatabasePDG.h"

DataFormats/simulation/src/Stack.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
/// \brief Implementation of the Stack class
33
/// \author M. Al-Turany - June 2014
44

5-
#include "include/Stack.h"
6-
#include "include/MCTrack.h" // for MCTrack
5+
#include "Stack.h"
6+
#include "MCTrack.h" // for MCTrack
77

88
#include "FairDetector.h" // for FairDetector
99
#include "FairLogger.h" // for MESSAGE_ORIGIN, FairLogger

Detectors/Base/CMakeLists.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
set(INCLUDE_DIRECTORIES
2-
${CMAKE_SOURCE_DIR}/Detectors/Base
2+
${CMAKE_SOURCE_DIR}/Detectors/Base/
3+
${CMAKE_SOURCE_DIR}/Detectors/Base/include
4+
35
)
46

57
set(SYSTEM_INCLUDE_DIRECTORIES

Detectors/Base/src/Detector.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/// \file Detector.cxx
22
/// \brief Implementation of the Detector class
33

4-
#include "include/Detector.h"
4+
#include "Detector.h"
55
#include <TVirtualMC.h> // for TVirtualMC, gMC
66
#include "TString.h" // for TString
77

Detectors/Base/src/TrackReference.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/// \brief Implementation of the TrackReference class
33
/// \author Sylwester Radomski (S.Radomski@gsi.de) GSI, Jan 31, 2003
44

5-
#include "include/TrackReference.h"
5+
#include "TrackReference.h"
66
#include "TVirtualMC.h" // for TVirtualMC, gMC
77
#include <Riostream.h>
88

Detectors/ITSMFT/ITS/base/CMakeLists.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
set(INCLUDE_DIRECTORIES
22
${CMAKE_SOURCE_DIR}
33
${CMAKE_SOURCE_DIR}/Detectors/ITSMFT/ITS/base/
4+
${CMAKE_SOURCE_DIR}/Detectors/ITSMFT/ITS/base/include
5+
46
)
57

68
set(SYSTEM_INCLUDE_DIRECTORIES
@@ -34,7 +36,7 @@ set(HEADERS
3436
Set(LINKDEF src/itsBaseLinkDef.h)
3537
Set(LIBRARY_NAME itsBase)
3638
Set(DEPENDENCIES
37-
AliceO2Base ParBase
39+
AliceO2Base ParBase
3840
)
3941

4042
GENERATE_LIBRARY()

Detectors/ITSMFT/ITS/base/src/ContainerFactory.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/// \file ContainerFactory.cxx
22
/// \brief Implementation of the ContainerFactory class
33

4-
#include "include/ContainerFactory.h"
4+
#include "ContainerFactory.h"
55
#include "FairRuntimeDb.h" // for FairRuntimeDb
66
#include "TString.h" // for TString
77
class FairParSet;

0 commit comments

Comments
 (0)