Changes between Version 9 and Version 10 of IngredientsSpectrum
- Timestamp:
- 11/21/19 12:07:36 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
IngredientsSpectrum
v9 v10 20 20 21 21 e.g. 22 22 {{{ 23 23 ./rootifysql -C rootifysql.eth.rc /home/dorner/FACT.analysis/spectrum/ontime-vs-zd.sql --list.FileID=/home/dorner/FACT.analysis/spectrum/dataset.txt /home/dorner/FACT.analysis/spectrum/ontime-vs-zd.root 24 25 with 26 27 dorner@LaMouette:~/FACT.analysis/spectrum$ cat ontime-vs-zd.sql 24 }}} 25 with ontime-vs-zd.sql: 26 {{{ 28 27 SELECT 29 28 TIME_TO_SEC(TIMEDIFF(fRunStop,fRunStart))*fEffectiveOn as ontime, … … 32 31 RunInfo 33 32 WHERE 34 FileID IN ($FileID 35 33 FileID IN ($FileID) 34 }}} 36 35 then 37 36 {{{ 38 37 root [0] TChain c("Result") 39 38 root [1] c.Add("/home/dorner/FACT.analysis/spectrum/ontime-vs-zd.root"); 40 39 root [2] c.Draw("zd>>dis(90,0,90)", "ontime"); 41 40 }}} 42 41 43 42 == step 3