This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from ROOT import * | |
import numpy as np | |
from scipy import stats | |
from scipy import signal | |
def fill(h,v): | |
h.SetBins(len(v), 0 , len(v)) | |
for i in range(len(v)): | |
h.SetBinContent(i+1, v[i]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
MuonVetoHVHome=/home/edelweiss/Programme/HV-cmd | |
export PYTHONSTARTUP=/etc/pythonstart | |
PYTHONPATH=/usr/local/bin/python | |
cd $MuonVetoHVHome && $PYTHONPATH ./muonvetohvlog.py | |
sleep 30 | |
cd $MuonVetoHVHome && $PYTHONPATH ./muonvetohvemailwarning.py |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
from couchdbkit import Server,Database | |
import os, subprocess, sys | |
def main(): | |
datadir = '/sps/edelweis/kdata/data/current' | |
firstRun = 'le26a000' | |
lastRun = 'zz99z999' | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
from ROOT import * | |
import os, sys | |
import numpy as np | |
def main(*args): | |
runFile = os.path.join('/sps/edelweis/kdata/data/current/raw', os.path.basename(args[0])) | |
boloName = args[1] |
NewerOlder