Skip to content

Commit e91513a

Browse files
committed
Update of the version of Delphes/DelphesMa5tune + compatibility with M1 chips and Mac OS 13.0.
1 parent ec00e79 commit e91513a

File tree

8 files changed

+21
-9
lines changed

8 files changed

+21
-9
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.github_meta.log
12
*/*.pyc
23
*/*/*.pyc
34
*/*/*/*.pyc
@@ -12,3 +13,5 @@ tools/SampleAnalyzer/Test/Makefile_*
1213
*/*/*.log
1314
doc/??????_mode.log
1415
doc/??????_mode.pdf
16+
.DS_Store
17+
ANALYSIS_*

bin/ma5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ sys.path.insert(0, servicedir)
6868

6969
# Release version
7070
# Do not touch it !!!!!
71-
version = "1.10.8"
72-
date = "2023/02/02"
71+
version = "1.10.9"
72+
date = "2023/02/07"
7373

7474
# Loading the MadAnalysis session
7575
import madanalysis.core.launcher

doc/releases/changelog-v1.10.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,10 @@
119119
* Fixed an attribute misspelling in `ObservableBase`.
120120
([#171](https://github.com/MadAnalysis/madanalysis5/pull/171))
121121

122+
* Update of the version of Delphes/DelphesMa5tune + compatibility with M1 chips and Mac OS 13.0.
123+
([#173](https://github.com/orgs/MadAnalysis/discussions/173))
124+
125+
122126
## Contributors
123127

124128
This release contains contributions from (in alphabetical order):

madanalysis/install/install_delphes.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,9 @@ def __init__(self,main,package):
5050
self.untardir = os.path.join(self.tmpdir, 'MA5_'+self.package)
5151
self.ncores = 1
5252
if package == 'delphesma5tune':
53-
self.files = {package+".tar.gz" : "https://madanalysis.irmp.ucl.ac.be/raw-attachment/wiki/MA5SandBox/delphes-3.5.0.tar.gz"}
53+
self.files = {package+".tar.gz" : "https://madanalysis.irmp.ucl.ac.be/raw-attachment/wiki/MA5SandBox/delphes3.5.0.tar.gz"}
5454
else:
55-
# self.files = {package+".tar.gz" : "https://madanalysis.irmp.ucl.ac.be/raw-attachment/wiki/WikiStart/delphes342pre.tar.gz"} # Delphes for LLP not release yet
56-
# self.files = {package+".tar.gz" : "http://cp3.irmp.ucl.ac.be/downloads/Delphes-3.4.2.tar.gz"}
57-
self.files = {package+".tar.gz" : "https://madanalysis.irmp.ucl.ac.be/raw-attachment/wiki/MA5SandBox/delphes3.4.3.tar.gz"}
55+
self.files = {package+".tar.gz" : "https://madanalysis.irmp.ucl.ac.be/raw-attachment/wiki/MA5SandBox/delphes3.5.0.tar.gz"}
5856
self.logger = logging.getLogger('MA5')
5957

6058

@@ -119,7 +117,7 @@ def Unpack(self):
119117
if self.package == 'delphesMA5tune':
120118
# Copying the patch
121119
self.logger.debug('Copying the patch ...')
122-
input=self.toolsdir+'/SampleAnalyzer/Interfaces/delphesMA5tune/patch_delphesMA5tune.tgz'
120+
input=self.toolsdir+'/SampleAnalyzer/Interfaces/delphesMA5tune/patch_delphesMA5tune_v35.tgz'
123121
output=packagedir+'/patch_delphesMA5tune.tgz'
124122
try:
125123
shutil.copy(input,output)

madanalysis/system/checkup.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -532,6 +532,13 @@ def SetFolder(self):
532532
self.logger.debug('after DYLD_LIBRARY_PATH='+str(os.environ['DYLD_LIBRARY_PATH']))
533533
self.logger.debug('--------')
534534

535+
# ROOT INCLUDE PATH
536+
if self.archi_info.has_delphes:
537+
os.environ['ROOT_INCLUDE_PATH']=os.path.join(self.archi_info.ma5dir,'tools','delphes','external');
538+
if self.archi_info.has_delphesMA5tune:
539+
os.environ['ROOT_INCLUDE_PATH']=os.path.join(self.archi_info.ma5dir,'tools','delphesMA5tune','external');
540+
541+
535542
self.logger.debug('-------- END: set environment variables --------')
536543

537544
return True

tools/SampleAnalyzer/Commons/Base/Configuration.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ using namespace MA5;
4040
// Initializing static data members
4141
// -----------------------------------------------------------------------------
4242
// DO NOT TOUCH THESE LINES
43-
const std::string Configuration::sampleanalyzer_version_ = "1.10.8";
44-
const std::string Configuration::sampleanalyzer_date_ = "2023/02/02";
43+
const std::string Configuration::sampleanalyzer_version_ = "1.10.9";
44+
const std::string Configuration::sampleanalyzer_date_ = "2023/02/07";
4545
// DO NOT TOUCH THESE LINES
4646

4747
// -----------------------------------------------------------------------------
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)