Skip to content

Commit 01a908b

Browse files
Dario Berzanodberzano
authored andcommitted
Rename Configuration to SimConfig
1 parent bbdc4e0 commit 01a908b

10 files changed

Lines changed: 9 additions & 9 deletions

File tree

Common/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
add_subdirectory(MathUtils)
22
add_subdirectory(Field)
3-
add_subdirectory(Configuration)
3+
add_subdirectory(SimConfig)
44

55
install(
66
DIRECTORY maps
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
set(MODULE_NAME "Configuration")
1+
set(MODULE_NAME "SimConfig")
22

33
O2_SETUP(NAME ${MODULE_NAME})
44

@@ -10,7 +10,7 @@ set(HEADERS
1010
include/${MODULE_NAME}/SimConfig.h
1111
)
1212

13-
set(LINKDEF src/ConfigurationLinkDef.h)
13+
set(LINKDEF src/SimConfigLinkDef.h)
1414
set(LIBRARY_NAME ${MODULE_NAME})
1515
set(BUCKET_NAME configuration_bucket)
1616

File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// granted to it by virtue of its status as an Intergovernmental Organization
99
// or submit itself to any jurisdiction.
1010

11-
#include <Configuration/SimConfig.h>
11+
#include <SimConfig/SimConfig.h>
1212
#include <boost/program_options.hpp>
1313
#include <iostream>
1414

File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// granted to it by virtue of its status as an Intergovernmental Organization
99
// or submit itself to any jurisdiction.
1010

11-
#include <Configuration/SimConfig.h>
11+
#include <SimConfig/SimConfig.h>
1212
#include <iostream>
1313

1414
int main(int argc, char* argv[]) {

cmake/O2Dependencies.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1074,7 +1074,7 @@ o2_define_bucket(
10741074
fairroot_base_bucket
10751075

10761076
#-- precise modules follow
1077-
Configuration
1077+
SimConfig
10781078
DetectorsPassive
10791079
TPCSimulation
10801080
TPCReconstruction

macro/build_geometry.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#include <FITSimulation/Detector.h>
3131
#include <DetectorsPassive/Cave.h>
3232
#include <DetectorsPassive/FrameStructure.h>
33-
#include <Configuration/SimConfig.h>
33+
#include <SimConfig/SimConfig.h>
3434
#include "FairRunSim.h"
3535
#include <algorithm>
3636
#endif

macro/o2sim.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#include <memory>
1717
#include "FairParRootFileIo.h"
1818
#include "FairSystemInfo.h"
19-
#include <Configuration/SimConfig.h>
19+
#include <SimConfig/SimConfig.h>
2020
#include <Generators/GeneratorFromFile.h>
2121
#endif
2222

run/o2sim.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
// or submit itself to any jurisdiction.
1010

1111
#include "../macro/o2sim.C"
12-
#include <Configuration/SimConfig.h>
12+
#include <SimConfig/SimConfig.h>
1313

1414
int main(int argc, char* argv[])
1515
{

0 commit comments

Comments
 (0)