Skip to content

Instantly share code, notes, and snippets.

View mgmarino's full-sized avatar

Michael Marino mgmarino

View GitHub Profile
@mgmarino
mgmarino / gist:1048413
Created June 27, 2011 06:50
Rescale frame
TGaxis* rescale_frame(TPad *canvas, RooPlot *frame, Double_t scale, const char *title)
{
// HACK
// Takes a frame and rescales it to arbitrary coordinates, writing over the graphical axis.
// This is helpful when dealing with RooPlot to get the axes
// correct. Returns axis in case anything else needs to be done.
TAxis* yaxis = frame.GetYaxis();
yaxis->SetTickLength(0);
@mgmarino
mgmarino / gist:1048680
Created June 27, 2011 11:03
Python Friending
import ROOT
ROOT.gSystem.Load("libEXOROOT")
t1 = ROOT.TChain("tree")
t2 = ROOT.TChain("tree")
t1.Add("recon00001620-000.root")
t1.Add("recon00001683-000.root")
t2.Add("run00001620-000.root")
@mgmarino
mgmarino / gist:1048689
Created June 27, 2011 11:14
More direct translation
import ROOT
ROOT.gSystem.Load("libEXOROOT")
t1 = ROOT.TChain("tree")
t2 = ROOT.TChain("tree")
ED1 = ROOT.EXOEventData();
ED2 = ROOT.EXOEventData();
t1.Add("recon00001620-000.root")
t1.Add("recon00001683-000.root")
@mgmarino
mgmarino / LoadTree.py
Created July 8, 2011 07:49
Loading a tree of a set of files
from load_tree import load_tree, load_limited_tree
# use the following if you want a lot of events (~800000)
atree = load_tree()
# use the following if you want fewer events (~30000)
atree = load_limited_tree()
# I would use the second to do tests (comment out the first)
# and then the first to do "production" data runs.
import ROOT
import random
import math
import os
import glob
ROOT.gSystem.Load("libEXOROOT")
def make_wfs():
@mgmarino
mgmarino / gist:1106623
Created July 26, 2011 12:21
Do a fast average
#include "EXOUtilities/EXOEventData.hh"
#include "EXOUtilities/EXOChargeCluster.hh"
#include "EXOUtilities/EXOScintillationCluster.hh"
#include "EXOUtilities/EXOWaveform.hh"
#include "TFile.h"
#include "TTree.h"
#include "TChain.h"
#include <iostream>
#include <TMath.h>
#include <TH1D.h>
@mgmarino
mgmarino / gist:1120267
Created August 2, 2011 14:14
Energy Calibration in fits
import ROOT
# These are the data that are read in, there should be two versions for SS and
# MS
adc_value = ROOT.RooRealVar("adc_value", "ADC", 500, 5000)
sigma = ROOT.RooRealVar("sigma", "sigma", 0, 10)
true_energy = ROOT.RooRealVar("true_energy", "true_energy", 0, 5000)
# These guys need to be close to the correct values otherwise Minuit has a hard
# time
@mgmarino
mgmarino / total_nll.py
Created August 11, 2011 06:52
Total NLL
SS_nll = ROOT.RooNLLVar("SS_nll", "SS_nll", modelSS, dataSS,
ROOT.RooFit.Extended(), ROOT.RooFit.NumCPU(cpus))
MS_nll = ROOT.RooNLLVar("MS_nll", "MS_nll", modelMS, dataMS,
ROOT.RooFit.Extended(), ROOT.RooFit.NumCPU(cpus))
nll_add = []
for floater_one, var_one, err_one, float_two, var_two, err_two, rho in [
(OffsetSS, offsetSSMean, offsetSSMeanSigma,
SlopeSS, slopeSSMean, slopeSSMeanSigma, SSCovarianceTerm),
(OffsetMS, offsetMSMean, offsetMSMeanSigma,
SlopeMS, slopeMSMean, slopeMSMeanSigma, MSCovarianceTerm),
@mgmarino
mgmarino / gist:1255725
Created October 1, 2011 07:22
Processing info with file
#!/usr/bin/python
import ROOT
ROOT.gSystem.Load("libEXOUtilities")
f = ROOT.TFile("/media/750GB/FiberLight/run00002225-000.root")
t = f.Get("tree")
A = t.GetUserInfo().First()
while A:
#A.Print()
@mgmarino
mgmarino / gist:1283730
Created October 13, 2011 08:25
EXOAnalysis Steering
import pyWIMP.utilities.utilities as util
import glob
import os
import sys
def do_child_work(afile, force):
output_filename = "out_" + os.path.basename(afile)
if os.path.exists(output_filename) and not force:
print "Refusing to overwrite: ", output_filename
return