File tree Expand file tree Collapse file tree 3 files changed +27
-2
lines changed
Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Original file line number Diff line number Diff line change 1111
1212#add_compile_options(-O0 -g -fPIC)
1313
14- add_subdirectory (macros )
14+ add_subdirectory (data )
1515add_subdirectory (simulation )
1616add_subdirectory (alignment )
1717add_subdirectory (base )
1818add_subdirectory (workflow )
1919add_subdirectory (reconstruction )
20+ add_subdirectory (macros )
Original file line number Diff line number Diff line change 1+ # See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
2+ # All rights not expressly granted are reserved.
3+ #
4+ # This software is distributed under the terms of the GNU General Public
5+ # License v3 (GPL Version 3), copied verbatim in the file "COPYING".
6+ #
7+ # In applying this license CERN does not waive the privileges and immunities
8+ # granted to it by virtue of its status as an Intergovernmental Organization
9+ # or submit itself to any jurisdiction.
10+
11+ add_custom_target (
12+ GenerateAPTSResponse ALL
13+ COMMAND
14+ ${CMAKE_BINARY_DIR} /stage/bin/o2-alpide-response-generator -c APTS -i
15+ ${ITSRESPONSE_DIR} /response/ITS3ChipResponseData/APTSResponseData/ -o
16+ ${CMAKE_CURRENT_BINARY_DIR} /
17+ BYPRODUCTS ${CMAKE_CURRENT_BINARY_DIR} /APTSResponseData.root
18+ DEPENDS GenerateAlpideResponse
19+ COMMENT "Generating APTSResponseData.root" )
20+ install (
21+ FILES "${CMAKE_CURRENT_BINARY_DIR} /APTSResponseData.root"
22+ DESTINATION
23+ "${CMAKE_INSTALL_PREFIX} /share/Detectors/Upgrades/ITS3/data/ITS3ChipResponseData/"
24+ )
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ void Digitizer::init()
6969 mSimRespIBShift = mSimRespIB ->getDepthMax () - SegmentationSuperAlpide::mSensorLayerThickness / 2 .f ;
7070 mSimRespOBShift = mSimRespOB ->getDepthMax () - Segmentation::SensorLayerThickness / 2 .f ;
7171 } else if (func == " APTS" ) {
72- constexpr const char * responseFileIB = " $(O2_ROOT)/share/Detectors/Upgrades/ITS3/data/ITS3ChipResponseData/APTSResponseData.root " ;
72+ constexpr const char * responseFileIB = " $(O2_ROOT)/share/Detectors/Upgrades/ITS3/data/ITS3ChipResponseData/" ;
7373 constexpr const char * responseFileOB = " $(O2_ROOT)/share/Detectors/ITSMFT/data/AlpideResponseData/AlpideResponseData.root" ;
7474 loadSetResponseFunc (responseFileIB, responseFileOB, " APTS" );
7575 mSimRespIBShift = mSimRespIB ->getDepthMax () - 10 .e -4f ;
You can’t perform that action at this time.
0 commit comments