increased peak threshold in json file

This commit is contained in:
2025-06-24 14:55:54 +02:00
parent 7ac791c214
commit 14ba366861
3 changed files with 10 additions and 3 deletions

View File

@@ -676,6 +676,13 @@ class AnalysisProcedure(QObject):
print(f'y1 sample length = {len(self.y1_sample)}')
print(f'y2 sample length = {len(self.y2_sample)}', flush=True)
#for i in range(0, len(self.y1_sample)):
# self.y1_sample[i] = self.y1_sample[i] * (-1)
for i in range(0, len(self.y2_sample)):
self.y2_sample[i] = self.y2_sample[i] * (-1)
#series = pd.Series(self.y1_sample)
#self.y1_sample = (series * (-1)).tolist()
#self.y1_sample = (series).tolist()

View File

@@ -74,9 +74,9 @@
"minimumCurrent": {"flag": 1, "data":{ "widget": "QLineEdit", "text" :"Inj2 I_min (mA):", "value" : "0.100"}}
},
" Cyclotron ": {
"peakHeight": {"flag": 1, "data":{ "widget": "QLineEdit", "text" :"Min peak height:", "value" : 50 }},
"peakHeight": {"flag": 1, "data":{ "widget": "QLineEdit", "text" :"Min peak height:", "value" : 1000 }},
"peakDistance": {"flag": 1, "data":{ "widget": "QLineEdit", "text" :"Min peak distance: ", "value" : 10 }},
"correlationPeakDifference": {"flag": 1, "data":{ "widget": "QLineEdit", "text" :"Min dcorr(peak1-peak2):", "value" : 0.01 }},
"correlationPeakDifference": {"flag": 1, "data":{ "widget": "QLineEdit", "text" :"Min dcorr(peak1-peak2):", "value" : 0.005 }},
"minimumCurrent": {"flag": 1, "data":{ "widget": "QLineEdit", "text" :"Inj2 I_min (mA):", "value" : "0.100"}}
}
},

View File

@@ -1,5 +1,5 @@
#!/bin/bash
cd /hipa/bd/applications/tina/1.1.0
cd /hipa/bd/applications/tina/1.2.0
# For use if script is sourced rather than executed
appNameDefault="tina.sh"