-
Notifications
You must be signed in to change notification settings - Fork 445
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MCH standalone alignment module (#12583)
* MCH standalone alignment module with a common part(for both MCH and MTF) of mathematics basic codes moved to a common path under O2/Detectors/ForwardAlign Co-Authored-By: javierecc <javier.castillo.castellanos@cern.ch> * Please consider the following formatting changes (#4) * Removed from PR * Fixing formatting issue * Add missing header for filesystem * Fix warning with dereferenced iterator * Remove re-initialisation of magfield for trackfitter and move residual QA plots to O2Physics task * Update comment for track selection * Remove unused function * Remove re-definition of magfield which is set already with CCDB finalisation * Fixing CI build errors --------- Co-authored-by: javierecc <javier.castillo.castellanos@cern.ch> Co-authored-by: ALICE Builder <alibuild@users.noreply.github.com>
- Loading branch information
1 parent
dc4c7dd
commit d43b949
Showing
41 changed files
with
3,645 additions
and
187 deletions.
There are no files selected for viewing
This file contains 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 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,40 @@ | ||
# 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. | ||
|
||
o2_add_library(ForwardAlign | ||
SOURCES src/MatrixSparse.cxx | ||
src/MatrixSq.cxx | ||
src/MillePede2.cxx | ||
src/MillePedeRecord.cxx | ||
src/MilleRecordReader.cxx | ||
src/MilleRecordWriter.cxx | ||
src/MinResSolve.cxx | ||
src/RectMatrix.cxx | ||
src/SymBDMatrix.cxx | ||
src/SymMatrix.cxx | ||
src/VectorSparse.cxx | ||
PUBLIC_LINK_LIBRARIES O2::CCDB | ||
O2::Steer | ||
ROOT::TreePlayer) | ||
|
||
o2_target_root_dictionary(ForwardAlign | ||
HEADERS include/ForwardAlign/MatrixSparse.h | ||
include/ForwardAlign/MatrixSq.h | ||
include/ForwardAlign/MillePede2.h | ||
include/ForwardAlign/MillePedeRecord.h | ||
include/ForwardAlign/MilleRecordReader.h | ||
include/ForwardAlign/MilleRecordWriter.h | ||
include/ForwardAlign/MinResSolve.h | ||
include/ForwardAlign/RectMatrix.h | ||
include/ForwardAlign/SymBDMatrix.h | ||
include/ForwardAlign/SymMatrix.h | ||
include/ForwardAlign/VectorSparse.h | ||
LINKDEF src/ForwardAlignLinkDef.h) |
This file contains 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 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 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 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 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 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
Oops, something went wrong.