Skip to content

Commit

Permalink
Merge pull request #5 from DUNE/4-integration-with-mrb-and-ups
Browse files Browse the repository at this point in the history
4 integration with mrb and ups
  • Loading branch information
mt82 authored Oct 9, 2023
2 parents cbddbbb + 7729c6d commit 64e8c65
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
# e.g. by passing `-DROOT_DIR="/path/to/root/installation` at cmake configuration time.

cmake_minimum_required(VERSION 3.0 FATAL_ERROR)
project(SandReco LANGUAGES CXX VERSION 1.0.0)
project(SandReco LANGUAGES CXX VERSION 01.00.00)

set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_PLATFORM_INDEPENDENT_CODE ON)
Expand Down
1 change: 1 addition & 0 deletions src/SANDDigitizationEDEPSIM.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#include "SANDDigitization.h"

#include <iostream>
#include <iomanip>

#include "TFile.h"
#include "TTree.h"
Expand Down
1 change: 1 addition & 0 deletions src/SANDDigitizationFLUKA.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
#include "SANDDigitization.h"

#include <iostream>
#include <iomanip>

#include "TFile.h"
#include "TTree.h"
Expand Down
48 changes: 48 additions & 0 deletions ups/product_deps
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# The parent line must be the first non-comment line in the file
# This line defines the product name and version
parent sandreco
defaultqual e20

# These optional lines define the installed directories where
# headers, libraries, and executables will be found
# Use them only if your product does not conform to the defaults
# Format: directory_type directory_path directory_name
# The only recognized values of the first field are fcldir, incdir, libdir, and bindir
# The only recognized values of the second field are product_dir, fq_dir, and -
# The third field is not constrained.
# Defaults:
# incdir product_dir include
# fcldir product_dir fcl
# libdir fq_dir lib
# bindir fq_dir bin
# gdmldir product_dir
# fwdir product_dir fw

product version
edepsim v3_2_0b
end_product_list

# define allowed qualifiers and the corresponding qualifiers for the depdencies.
# e15 - with gcc 6.4.0 and -std=c++14

qualifier edepsim
e20:prof e20:prof
end_qualifier_list

# table fragment to set FW_SEARCH_PATH needed
# to find gdml files:
table_fragment_begin

#pathPrepend(FW_SEARCH_PATH, ${UPS_PROD_DIR}/gdml)
#pathPrepend(FW_SEARCH_PATH, ${UPS_PROD_DIR}/xml)
#pathPrepend(FW_SEARCH_PATH, ${UPS_PROD_DIR}/txt)
#pathPrepend(GXMLPATH, ${UPS_PROD_DIR}/xml)
#pathPrepend(FHICL_FILE_PATH, .:./job)

table_fragment_end

# Preserve tabs and formatting in emacs and vi / vim:

### Local Variables:
### tab-width: 8
### End:

0 comments on commit 64e8c65

Please sign in to comment.