Skip to content

Commit 366459b

Browse files
author
cmorgoth
committed
Commiting DRS4
1 parent 16e39a6 commit 366459b

16 files changed

+435
-254
lines changed

DRS4/.DS_Store

6 KB
Binary file not shown.

DRS4/DRS4_data.root

7.03 MB
Binary file not shown.

DRS4/DRS4_pulse.pdf

23.6 KB
Binary file not shown.

DRS4/Makefile

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
CXX = $(shell root-config --cxx)
2+
LD = $(shell root-config --ld)
3+
4+
INC = $(shell pwd)
5+
6+
CPPFLAGS := $(shell root-config --cflags) -I$(INC)/include
7+
LDFLAGS := $(shell root-config --glibs) $(STDLIBDIR)
8+
9+
CPPFLAGS += -g
10+
11+
TARGET = parse_DRS4
12+
13+
SRC = Parse_xml_format.cc
14+
15+
OBJ = $(SRC:.cc=.o)
16+
17+
all : $(TARGET)
18+
19+
$(TARGET) : $(OBJ)
20+
$(LD) $(CPPFLAGS) -o $(TARGET) $(OBJ) $(LDFLAGS)
21+
@echo $@
22+
@echo $<
23+
@echo $^
24+
25+
%.o : %.cc
26+
$(CXX) $(CPPFLAGS) -o $@ -c $<
27+
@echo $@
28+
@echo $<
29+
clean :
30+
rm -f *.o src/*.o $(TARGET) *~
31+

DRS4/Parse_xml_format.cc

Lines changed: 145 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,145 @@
1+
/*
2+
Code written to parse DRS4 XML data
3+
Author: Cristian Pena.
4+
*/
5+
6+
#include <iostream>
7+
#include <vector>
8+
#include <fstream>
9+
#include <string>
10+
#include "TString.h"
11+
#include "TFile.h"
12+
#include "TTree.h"
13+
#include "TBranch.h"
14+
#include "TROOT.h"
15+
#include <stdlib.h> /* atof */
16+
#include <math.h>
17+
18+
#ifdef __MAKECINT__
19+
#pragma link C++ class vector<float>+;
20+
#endif
21+
22+
int main(int argc, char** argv){
23+
24+
if(argc > 3){
25+
std::cout << "Wrong Usage!\nPlease use as follows:\n ./parse_DRS4 file.xml" << std::endl;
26+
return -1;
27+
}
28+
gROOT->Reset();
29+
gROOT->ProcessLine("#include <vector>");
30+
31+
TFile* f = new TFile("DRS4_data.root", "RECREATE");
32+
TTree* tree = new TTree("outTree","DRS4 Tree");
33+
34+
int evt = 0;
35+
std::vector<float> *Amp = new std::vector<float>();
36+
std::vector<float> *Time = new std::vector<float>();
37+
std::vector<float> *Amp2 = new std::vector<float>();
38+
std::vector<float> *Time2 = new std::vector<float>();
39+
std::vector<float> *Amp3 = new std::vector<float>();
40+
std::vector<float> *Time3 = new std::vector<float>();
41+
42+
/*
43+
// List of branches
44+
TBranch *b_Amp;//!
45+
TBranch *b_Time;//!
46+
TBranch *b_Amp2;//!
47+
TBranch *b_Time2;//!
48+
TBranch *b_Amp3;//!
49+
TBranch *b_Time3;//!
50+
*/
51+
tree->Branch("evt", &evt, "evt/I");
52+
tree->Branch("Amp", "std::vector<float>*", Amp);
53+
tree->Branch("Time", "std::vector<float>*" ,Time);
54+
tree->Branch("Amp2", "std::vector<float>*", Amp2);
55+
tree->Branch("Time2", "std::vector<float>*", Time2);
56+
tree->Branch("Amp3", "std::vector<float>*", Amp3);
57+
tree->Branch("Time3", "std::vector<float>*", Time3);
58+
59+
std::ifstream ifs (argv[1], std::ifstream::in);
60+
std::string line;
61+
62+
bool valid_msm = false;
63+
if(ifs.is_open()){
64+
while(ifs.good()){
65+
if(ifs.eof())break;
66+
getline(ifs, line);
67+
//std::cout << line << std::endl;
68+
if(line.find("<DRSOSC>") != std::string::npos){
69+
std::cout << "Starting Measurement!!" << std::endl;
70+
valid_msm = true;
71+
}
72+
73+
if( valid_msm && (line.find("<Event>") != std::string::npos) ){
74+
if(evt!=0){
75+
tree->Fill();//Filling the Tree
76+
Amp->clear();
77+
Amp2->clear();
78+
Amp3->clear();
79+
Time->clear();
80+
Time2->clear();
81+
Time3->clear();
82+
}
83+
getline(ifs, line);//Reading Serial
84+
getline(ifs, line);//Reading Time Stamp
85+
getline(ifs, line);//Reading Horizontal Units
86+
//std::cout << "HUnit: " << line << std::endl;
87+
getline(ifs, line);//Reading Vertical Units
88+
//std::cout << "VUnit: " << line << std::endl;
89+
evt++;
90+
}
91+
92+
if(valid_msm && (line.find("<CHN1>") != std::string::npos)){
93+
while(1){
94+
getline(ifs, line);//Reading CHN1 data
95+
if(line.find("</CHN1>") != std::string::npos)break;
96+
int p_low = line.find(">");
97+
int p_med = line.find(",");
98+
int p_high = line.find("<",p_med+1);
99+
float t1 = atof(line.substr(p_low+1,p_med-(p_low+1)).c_str());
100+
float a1 = atof(line.substr(p_med+1,p_high-(p_med+1)).c_str());
101+
Amp->push_back(a1);
102+
Time->push_back(t1);
103+
//std::cout << t1 << " " << a1 << std::endl;
104+
}
105+
}
106+
107+
if(valid_msm && (line.find("<CHN2>") != std::string::npos)){
108+
while(1){
109+
getline(ifs, line);//Reading CHN2 data
110+
if(line.find("</CHN2>") != std::string::npos)break;
111+
int p_low = line.find(">");
112+
int p_med = line.find(",");
113+
int p_high = line.find("<",p_med+1);
114+
float t1 = atof(line.substr(p_low+1,p_med-(p_low+1)).c_str());
115+
float a1 = atof(line.substr(p_med+1,p_high-(p_med+1)).c_str());
116+
Amp2->push_back(a1);
117+
Time2->push_back(t1);
118+
//std::cout << t1 << " " << a1 << std::endl;
119+
}
120+
}
121+
122+
if(valid_msm && (line.find("<CHN3>") != std::string::npos)){
123+
while(1){
124+
getline(ifs, line);//Reading CHN3 data
125+
if(line.find("</CHN3>") != std::string::npos)break;
126+
int p_low = line.find(">");
127+
int p_med = line.find(",");
128+
int p_high = line.find("<",p_med+1);
129+
float t1 = atof(line.substr(p_low+1,p_med-(p_low+1)).c_str());
130+
float a1 = atof(line.substr(p_med+1,p_high-(p_med+1)).c_str());
131+
Amp3->push_back(a1);
132+
Time3->push_back(t1);
133+
}
134+
}
135+
136+
}
137+
}else{
138+
std::cout << "Unable to open file: " << argv[1] << std::endl;
139+
}
140+
141+
std::cout << evt << std::endl;
142+
tree->Write();
143+
f->Close();
144+
return 0;
145+
}

DRS4/Parse_xml_format.o

385 KB
Binary file not shown.

DRS4/parse_DRS4

78.1 KB
Binary file not shown.

Makefile

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,14 @@ LD = $(shell root-config --ld)
33

44
INC = $(shell pwd)
55

6-
OS_NAME:=$(shell uname -s | tr A-Z a-z)
7-
ifeq ($(OS_NAME),darwin)
8-
STDINCDIR := -I/opt/local/include
9-
STDLIBDIR := -L/opt/local/lib
10-
else
11-
STDINCDIR :=-I/afs/cern.ch/work/c/cpena/scratch_DM/CMSSW_5_2_3/src/UserCode/CPena/src/DarkMatter/include
12-
STDLIBDIR :=
13-
endif
14-
15-
CPPFLAGS := -Wl,--no-as-needed $(shell root-config --cflags) -I$(INC)/include
6+
CPPFLAGS := $(shell root-config --cflags) -I$(INC)/include
167
LDFLAGS := $(shell root-config --glibs) $(STDLIBDIR)
178

189
CPPFLAGS += -g
1910

2011
TARGET = Spec
2112

22-
SRC = test.cc outTree_Fitting_NewScope.C
13+
SRC = test.cc outTree_Fitting_NewScope_V2.C
2314

2415
#TARGET = bkg_pre_1mu
2516
#SRC = bkg_pre_1mu.cc src/DM_1DRatio.cc src/DM_2DRatio.cc src/DM_Base.cc

RooFitVersion/RooSine_cc.d

Lines changed: 79 additions & 79 deletions
Original file line numberDiff line numberDiff line change
@@ -1,83 +1,83 @@
11

22
# DO NOT DELETE
33

4-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooFit.h
5-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RConfig.h
6-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RVersion.h
7-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/Riostream.h RooSine.h
8-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooAbsPdf.h
9-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooAbsReal.h
10-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooAbsArg.h
11-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TNamed.h
12-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TObject.h
13-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/Rtypes.h
14-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/DllImport.h
15-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/Rtypeinfo.h
16-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/snprintf.h
17-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/strlcpy.h
18-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TGenericClassInfo.h
19-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TSchemaHelper.h
20-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TStorage.h
21-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TVersionCheck.h
22-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/Riosfwd.h
23-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TBuffer.h
24-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TString.h
25-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TMathBase.h
26-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/THashList.h
27-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TList.h
28-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TSeqCollection.h
29-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TCollection.h
30-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TIterator.h
31-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TRefArray.h
32-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TProcessID.h
33-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TObjArray.h
34-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooPrintable.h
35-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooRefCountList.h
36-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooLinkedList.h
37-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooLinkedListElem.h
38-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooHashTable.h
39-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooAbsCache.h
40-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooLinkedListIter.h
41-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooNameReg.h
42-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TClass.h
43-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TDictionary.h
44-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/Property.h
45-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TObjString.h
46-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooCmdArg.h
47-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooCurve.h
48-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TGraph.h
49-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TAttLine.h
50-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TAttFill.h
51-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TAttMarker.h
52-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TVectorFfwd.h
53-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TVectorDfwd.h
54-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TFitResultPtr.h
55-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooPlotable.h
56-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TMatrixDfwd.h
57-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooArgSet.h
58-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooAbsCollection.h
59-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooErrorHandler.h
60-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooArgList.h
61-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooGlobalFunc.h
62-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooNameSet.h
63-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooObjCacheManager.h
64-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooNormSetCache.h
65-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooSetPair.h
66-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooAbsCacheElement.h
67-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooCacheManager.h
68-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooMsgService.h
69-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooRealProxy.h
70-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooArgProxy.h
71-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooAbsProxy.h
72-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooAbsRealLValue.h
73-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooNumber.h
74-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooAbsLValue.h
75-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooAbsBinning.h
76-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooRealVar.h
77-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooUniformBinning.h
78-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooSharedPropertiesList.h
79-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooSharedProperties.h
80-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/TUUID.h
81-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/RooRealVarSharedProperties.h
82-
./RooSine_cc.so: /home/cmorgoth/Software/root/include/cintdictversion.h /home/cmorgoth/Software/root/include/RVersion.h
4+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooFit.h
5+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RConfig.h
6+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RVersion.h
7+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/Riostream.h RooSine.h
8+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooAbsPdf.h
9+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooAbsReal.h
10+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooAbsArg.h
11+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TNamed.h
12+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TObject.h
13+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/Rtypes.h
14+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/DllImport.h
15+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/Rtypeinfo.h
16+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/snprintf.h
17+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/strlcpy.h
18+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TGenericClassInfo.h
19+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TSchemaHelper.h
20+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TStorage.h
21+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TVersionCheck.h
22+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/Riosfwd.h
23+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TBuffer.h
24+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TString.h
25+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TMathBase.h
26+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/THashList.h
27+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TList.h
28+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TSeqCollection.h
29+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TCollection.h
30+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TIterator.h
31+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TRefArray.h
32+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TProcessID.h
33+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TObjArray.h
34+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooPrintable.h
35+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooRefCountList.h
36+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooLinkedList.h
37+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooLinkedListElem.h
38+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooHashTable.h
39+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooAbsCache.h
40+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooLinkedListIter.h
41+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooNameReg.h
42+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TClass.h
43+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TDictionary.h
44+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/Property.h
45+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TObjString.h
46+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooCmdArg.h
47+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooCurve.h
48+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TGraph.h
49+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TAttLine.h
50+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TAttFill.h
51+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TAttMarker.h
52+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TVectorFfwd.h
53+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TVectorDfwd.h
54+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TFitResultPtr.h
55+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooPlotable.h
56+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TMatrixDfwd.h
57+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooArgSet.h
58+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooAbsCollection.h
59+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooErrorHandler.h
60+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooArgList.h
61+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooGlobalFunc.h
62+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooNameSet.h
63+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooObjCacheManager.h
64+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooNormSetCache.h
65+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooSetPair.h
66+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooAbsCacheElement.h
67+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooCacheManager.h
68+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooMsgService.h
69+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooRealProxy.h
70+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooArgProxy.h
71+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooAbsProxy.h
72+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooAbsRealLValue.h
73+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooNumber.h
74+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooAbsLValue.h
75+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooAbsBinning.h
76+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooRealVar.h
77+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooUniformBinning.h
78+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooSharedPropertiesList.h
79+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooSharedProperties.h
80+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/TUUID.h
81+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/RooRealVarSharedProperties.h
82+
./RooSine_cc.so: /Users/cmorgoth/Software/root/include/cintdictversion.h /Users/cmorgoth/Software/root/include/RVersion.h
8383
RooSine_cc__ROOTBUILDVERSION= 5.34/09

RooFitVersion/RooSine_cc.so

-19.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)