This file contains 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
import cloudant | |
import json | |
import numpy | |
_db_url = "http://127.0.0.1:5984" | |
_db_name = "nedm%2Fnmr_system" # Should be the name of an nedm DB | |
_un = "username" | |
_pw = """password""" | |
acct = cloudant.Account(uri=_db_url) |
This file contains 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 | |
#PBS -q debug | |
#PBS -l mppwidth=24 | |
#PBS -l walltime=00:30:00 | |
#PBS -N Sensitivity | |
#PBS -j oe | |
export CRAY_ROOTFS=DSL | |
export BASEPATH=$PBS_O_WORKDIR | |
cd $BASEPATH |
This file contains 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
import signal | |
import time | |
_should_quit = False | |
def should_quit(): | |
return _should_quit | |
def handler(signum, frame): | |
global _should_quit |
This file contains 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
import socket | |
import numpy | |
numpy.set_printoptions(formatter={'int':lambda x:hex(int(x))}) | |
def find_lantronix(timeout=4): | |
""" | |
Broadcasts to find xport devices on the current subnet. | |
""" | |
# Set up the socket |
This file contains 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
import socket | |
import numpy | |
numpy.set_printoptions(formatter={'int':lambda x:hex(int(x))}) | |
toarr = lambda x: numpy.fromstring(x, dtype=numpy.uint8) | |
fromarr = lambda x: numpy.tostring(x) | |
class SocketObj: | |
def __init__(self, address, port): | |
self.__connect(address, port) |
This file contains 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
# Makefile for linking against ROOT | |
# M. Marino 22 May 2007 | |
TARGETS = example_digitizer_readout | |
SOURCES := $(wildcard *.cc) #uncomment these to add all cc files in directory to your compile list | |
OBJS := $(SOURCES:.cc=.o) | |
TARGETOBJ := $(patsubst %, %.o, $(TARGETS)) | |
CXX := g++ -std=c++11 | |
CXXFLAGS := -Wall -Wextra -O3 |
This file contains 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
import sys | |
import numpy | |
import json | |
import struct | |
import pynedm | |
_username = "nedm_user" | |
_password = "pw" | |
_server = "http://raid.nedm1" |
This file contains 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
import ROOT | |
import sys | |
import numpy | |
from matplotlib import pyplot as plt | |
import math | |
afile = ROOT.TFile(sys.argv[1]) | |
single_wf = afile.Get("wf") |
This file contains 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
import socket | |
import pynedm | |
import time | |
import math | |
import numpy | |
#import matplotlib.pyplot as plt | |
import sys | |
""" | |
Simple objects to communicate with the Agilent waveform generator |
This file contains 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
import ROOT | |
import sys | |
import matplotlib | |
#matplotlib.use('QTAgg') | |
import matplotlib.pyplot as plt | |
import numpy | |
import cPickle as pick | |
ns = 24 | |
#matplotlib.rcParams.update({'font.size': ns}) |