Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
NeuRad_tests
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vratislav Chudoba
NeuRad_tests
Commits
e2025d14
Commit
e2025d14
authored
Jan 12, 2017
by
Muzalevsky I.A
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
classes AEvent modified
parent
50da89cb
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
32 additions
and
14 deletions
+32
-14
IntegralCFD.c
convertTektronix/IntegralCFD.c
+14
-9
exp2.root
convertTektronix/exp2.root
+0
-0
read1.cpp
convertTektronix/read1.cpp
+5
-3
AEvent.cpp
dataClasses/AEvent.cpp
+10
-1
AEvent.h
dataClasses/AEvent.h
+3
-1
No files found.
convertTektronix/IntegralCFD.c
View file @
e2025d14
...
...
@@ -6,7 +6,7 @@ void IntegralCFD(){
Int_t
j
,
i
,
nentry
,
NumM
,
imax
,
imin
;
Double_t
A1
[
1000
],
A2
[
1000
],
A3
[
1000
],
A4
[
1000
];
/// амплитуды с сырых данных (отрицательные)
Double_t
T
[
1000
];
Double_t
Am
[
1000
]
;
// амплитуды с перевёрнутых пиков
Double_t
Am
[
1000
]
,
Ahist
[
1000
];
// амплитуды с перевёрнутых пиков,.... амплитуда в гистограмме
Double_t
Tim
[
1000
];
Double_t
Acfd
[
1000
];
Double_t
sum
,
zeroLEVEL1
,
zeroLEVEL2
,
tm
,
t1_15
,
m
,
m1_15
,
t2_15
,
m2_15
,
tL_15
,
mL_15
,
Integrall
,
LinPar
,
ChiSquare
,
t1_90
,
t2_90
,
minCFD
,
maxCFD
,
zCFD
,
Tcfd
,
deltaZero
;
...
...
@@ -66,6 +66,7 @@ void IntegralCFD(){
///////// заполнение дерева
TCanvas
*
c1
=
new
TCanvas
(
"c"
,
"zero line"
);
j
=
0
;
TH1F
*
hA
=
new
TH1F
(
"hA"
,
"full amlitude"
,
1000
,
5e-04
,
100
+
5e-04
);
// гистограмма для заполнения данными из триггерного канала
for
(
j
=
0
;
j
<
tree1
->
GetEntries
();
j
++
)
// j - номер события , i - внутри!
{
tree1
->
GetEntry
(
j
);
...
...
@@ -89,21 +90,22 @@ void IntegralCFD(){
if
(
Acfd
[
i
]
<
minCFD
)
{
minCFD
=
Acfd
[
i
];
imin
=
i
;}
}
/*TGraph *gr3 = new TGraph(1000,Tim,Acfd);
gr3->Draw("Al*");
c1->Update();
cout<<endl<<imin<<" "<<imax<<endl; */
NumM
=
(
tm
-
5e-04
)
*
(
10
);
// номер точки (0,1000) с максимальной амплитудой сигнала
Integrall
=
0
;
for
(
i
=
0
;
i
<
1000
;
i
++
)
// нахожу интеграл, c границами
{
if
(
(
Tim
[
i
]
>
(
tm
-
3
))
&&
(
Tim
[
i
]
<
(
tm
+
17
))
)
{
Integrall
=
Integrall
+
Am
[
i
];}
}
//cout<<endl<<"integral= "<<Integrall<<endl;
//////////////////
TGraph
*
gr1
=
new
TGraph
(
1000
,
Tim
,
Am
);
// поиск нуля
gr1
->
Draw
(
"Al*"
);
//hA = hA + (gr1->GetHistogram());
//hA->Add(gr1->GetHistogram());
//hA = gr1->GetHistogram();
//hA->Draw();
//c1->Update();
//gr1->Draw("Al*");
gr1
->
Fit
(
"fit1"
,
"R"
,
"goff"
);
zeroLEVEL1
=
fit1
->
GetParameter
(
0
);
c1
->
Update
();
...
...
@@ -144,6 +146,9 @@ void IntegralCFD(){
theTree
->
Fill
();
}
c1
->
cd
();
hA
->
Draw
();
c1
->
Update
();
//////////
theTree
->
Write
();
f1
->
Close
();
...
...
convertTektronix/exp2.root
View file @
e2025d14
No preview for this file type
convertTektronix/read1.cpp
View file @
e2025d14
void
read1
()
{
void
read1
(
Int_t
input
=
0
)
{
cout
<<
input
<<
endl
;
//void read1() {
gSystem
->
Load
(
"../libData.so"
);
Double_t
A1
[
1000
],
A2
[
1000
],
A3
[
1000
],
A4
[
1000
];
...
...
@@ -55,7 +57,7 @@ void read1() {
for
(
i
=
0
;;
i
++
){
fileName
.
ReadLine
(
myfile
);
NameLines
[
i
]
=
fileName
;
if
(
fileName
.
IsNull
()
)
break
;
if
(
fileName
.
IsNull
()
)
{
break
;}
}
myfile
.
close
();
...
...
dataClasses/AEvent.cpp
View file @
e2025d14
...
...
@@ -168,7 +168,16 @@ void AEvent::SetCFD() {
}
}
return
;
}
Double_t
AEvent
::
GetfCFD
()
{
return
fCFD
;
}
Double_t
AEvent
::
GetOnefTime
(
Int_t
i
)
{
return
fTime
[
i
];
}
Double_t
AEvent
::
GetOnefAmpPos
(
Int_t
i
)
{
return
fAmpPos
[
i
];
}
dataClasses/AEvent.h
View file @
e2025d14
...
...
@@ -54,7 +54,9 @@ public:
AEvent
(
const
Int_t
npoints
);
virtual
~
AEvent
();
ClassDef
(
AEvent
,
1
);
Double_t
GetfCFD
();
Double_t
GetOnefTime
(
Int_t
i
);
Double_t
GetOnefAmpPos
(
Int_t
i
);
void
SetRawDataFile
(
const
char
*
inprawfile
,
const
char
*
treename
);
void
ProcessEvent
();
// void Integral()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment