-
Notifications
You must be signed in to change notification settings - Fork 484
add ITS sensors to parallel world #13163
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
739e494
Add Parallel world in ITS aligner
mconcas 70a4c6a
toggle parallel world (#82)
maciacco 3241cf0
Don't close geomeitry here
mconcas 92fc6f9
qwer
mconcas 50a4e61
add ITS sensors to PW
maciacco 3ba9e9c
remove debug print
maciacco 2bf26f4
Please consider the following formatting changes
alibuild e11c643
Merge pull request #1 from alibuild/alibot-cleanup-13163
maciacco d6bf6b5
Update Detectors/gconfig/g4config.in
maciacco 932e262
Merge branch 'AliceO2Group:dev' into its-parallel-world
maciacco 1b3d7e0
disable geometry saving w/ pw + fill pw w/ full list of vols
maciacco ebe61e9
Merge branch 'AliceO2Group:dev' into its-parallel-world
maciacco 3d38760
make pw filling detector specific (todo: configuration)
maciacco 9494c0c
fix filling order + add configurables
maciacco bcaddf4
Please consider the following formatting changes
alibuild 6c80f2a
Merge pull request #2 from alibuild/alibot-cleanup-13163
maciacco add5531
Merge branch 'AliceO2Group:dev' into its-parallel-world
maciacco 6aa192d
remove unused params
maciacco 1cb77ff
remove unused include + add new class to linkdef
maciacco e764530
remove print + format string only once
maciacco d2a9e9f
get param only once
maciacco ca0a024
remove useless comment
maciacco 3f72471
Merge branch 'AliceO2Group:dev' into its-parallel-world
maciacco a9fcf2b
enable pw optimisation
maciacco ef32328
add empty implementation for generic pw method
maciacco File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -136,7 +136,7 @@ class AlignParam | |
| ClassDefNV(AlignParam, 1); | ||
| }; | ||
|
|
||
| } | ||
| } | ||
| } // namespace detectors | ||
| } // namespace o2 | ||
|
|
||
| #endif | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
Detectors/Base/include/DetectorsBase/GeometryManagerParam.h
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| // Copyright 2019-2020 CERN and copyright holders of ALICE O2. | ||
| // See https://alice-o2.web.cern.ch/copyright for details of the copyright holders. | ||
| // All rights not expressly granted are reserved. | ||
| // | ||
| // This software is distributed under the terms of the GNU General Public | ||
| // License v3 (GPL Version 3), copied verbatim in the file "COPYING". | ||
| // | ||
| // In applying this license CERN does not waive the privileges and immunities | ||
| // granted to it by virtue of its status as an Intergovernmental Organization | ||
| // or submit itself to any jurisdiction. | ||
|
|
||
| #ifndef DETECTORS_BASE_INCLUDE_GEOMETRYMANAGERPARAM_H_ | ||
| #define DETECTORS_BASE_INCLUDE_GEOMETRYMANAGERPARAM_H_ | ||
|
|
||
| #include "CommonUtils/ConfigurableParam.h" | ||
| #include "CommonUtils/ConfigurableParamHelper.h" | ||
|
|
||
| namespace o2 | ||
| { | ||
|
|
||
| struct GeometryManagerParam : public o2::conf::ConfigurableParamHelper<GeometryManagerParam> { | ||
| bool useParallelWorld = false; | ||
| bool usePwGeoBVH = false; | ||
| bool usePwCaching = false; | ||
|
|
||
| O2ParamDef(GeometryManagerParam, "GeometryManagerParam"); | ||
| }; | ||
|
|
||
| } // namespace o2 | ||
|
|
||
| #endif /* DETECTORS_BASE_INCLUDE_GEOMETRYMANAGERPARAM_H_ */ | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| // Copyright 2019-2020 CERN and copyright holders of ALICE O2. | ||
| // See https://alice-o2.web.cern.ch/copyright for details of the copyright holders. | ||
| // All rights not expressly granted are reserved. | ||
| // | ||
| // This software is distributed under the terms of the GNU General Public | ||
| // License v3 (GPL Version 3), copied verbatim in the file "COPYING". | ||
| // | ||
| // In applying this license CERN does not waive the privileges and immunities | ||
| // granted to it by virtue of its status as an Intergovernmental Organization | ||
| // or submit itself to any jurisdiction. | ||
|
|
||
| #include "DetectorsBase/GeometryManagerParam.h" | ||
| O2ParamImpl(o2::GeometryManagerParam); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
Detectors/ITSMFT/ITS/simulation/include/ITSSimulation/ITSSimParam.h
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| // Copyright 2019-2020 CERN and copyright holders of ALICE O2. | ||
| // See https://alice-o2.web.cern.ch/copyright for details of the copyright holders. | ||
| // All rights not expressly granted are reserved. | ||
| // | ||
| // This software is distributed under the terms of the GNU General Public | ||
| // License v3 (GPL Version 3), copied verbatim in the file "COPYING". | ||
| // | ||
| // In applying this license CERN does not waive the privileges and immunities | ||
| // granted to it by virtue of its status as an Intergovernmental Organization | ||
| // or submit itself to any jurisdiction. | ||
|
|
||
| #ifndef DETECTORS_BASE_INCLUDE_ITSSIMPARAM_H_ | ||
| #define DETECTORS_BASE_INCLUDE_ITSSIMPARAM_H_ | ||
|
|
||
| #include "CommonUtils/ConfigurableParam.h" | ||
| #include "CommonUtils/ConfigurableParamHelper.h" | ||
|
|
||
| namespace o2 | ||
| { | ||
| namespace its | ||
| { | ||
|
|
||
| struct ITSSimParam : public o2::conf::ConfigurableParamHelper<ITSSimParam> { | ||
| bool addMetalToPW = true; | ||
| bool addSensorToPW = true; | ||
| bool addChipToPW = true; | ||
|
|
||
| O2ParamDef(ITSSimParam, "ITSSimParam"); | ||
| }; | ||
|
|
||
| } // namespace its | ||
| } // namespace o2 | ||
|
|
||
| #endif /* DETECTORS_BASE_INCLUDE_ITSSIMPARAM_H_ */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| // Copyright 2019-2020 CERN and copyright holders of ALICE O2. | ||
| // See https://alice-o2.web.cern.ch/copyright for details of the copyright holders. | ||
| // All rights not expressly granted are reserved. | ||
| // | ||
| // This software is distributed under the terms of the GNU General Public | ||
| // License v3 (GPL Version 3), copied verbatim in the file "COPYING". | ||
| // | ||
| // In applying this license CERN does not waive the privileges and immunities | ||
| // granted to it by virtue of its status as an Intergovernmental Organization | ||
| // or submit itself to any jurisdiction. | ||
|
|
||
| #include "ITSSimulation/ITSSimParam.h" | ||
| O2ParamImpl(o2::its::ITSSimParam); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.