Skip to content

Instantly share code, notes, and snippets.

View mgmarino's full-sized avatar

Michael Marino mgmarino

View GitHub Profile
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)
#!/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
import signal
import time
_should_quit = False
def should_quit():
return _should_quit
def handler(signum, frame):
global _should_quit
@mgmarino
mgmarino / find_xport.py
Last active November 25, 2022 07:34
Find Lantronix XPort devices with a python script.
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
@mgmarino
mgmarino / test_xport.py
Created April 9, 2015 15:43
Test xport readout/write for climate control...
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)
@mgmarino
mgmarino / Makefile
Last active August 29, 2015 14:17
Example readout of D-TACQ cards using the DTACQ server software (nEDM).
# 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
import sys
import numpy
import json
import struct
import pynedm
_username = "nedm_user"
_password = "pw"
_server = "http://raid.nedm1"
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")
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
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})