Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
stochastic
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
stochastic-public
stochastic
Commits
f699f54f
Commit
f699f54f
authored
4 years ago
by
Marie-Anne Bizouard
Browse files
Options
Downloads
Patches
Plain Diff
add new file for displaying the loduest events in ZL for zebragard
parent
797d4022
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
analyses/STAMPAS/post_processing/background_estimation/src/get_loudest_ZL.m
+158
-0
158 additions, 0 deletions
...ost_processing/background_estimation/src/get_loudest_ZL.m
with
158 additions
and
0 deletions
analyses/STAMPAS/post_processing/background_estimation/src/get_loudest_ZL.m
0 → 100644
+
158
−
0
View file @
f699f54f
function
[]
=
get_loudest
(
searchPath
,
Data
,
far
,
varargin
)
%function [] = get_loudest(File,Data,varargin)
% get_loudest :
% DESCRIPTION :
%
% SYNTAX :
% [] = get_loudest ()
%
% INPUT :
%
% OUTPUT :
%
% AUTHOR : Valentin FREY
% CONTACT : valentin.frey@gmail.com
% VERSION :
% DATE :
%
import
classes
.
utils
.
waitbar
%---------------------------------------------------------------------
%% INPUT PARSER
%---------------------------------------------------------------------
%
% parse & check input
%
File
=
[
searchPath
'/figures/loudest.txt'
];
% FAR=load([searchPath '/figures/FAR_clean.mat']);
p
=
inputParser
;
addRequired
(
p
,
'File'
);
addRequired
(
p
,
'Data'
);
if
verLessThan
(
'matlab'
,
'8.2'
)
addParamValue
(
p
,
'SNR'
,
30
,
@
isnumeric
);
addParamValue
(
p
,
'Cut'
,
'noCut'
);
addParamValue
(
p
,
'Max'
,
100
,
@
isnumeric
);
else
addParamValue
(
p
,
'SNR'
,
30
,
@
isnumeric
);
addParamValue
(
p
,
'Cut'
,
'noCut'
);
addParamValue
(
p
,
'Max'
,
100
,
@
isnumeric
);
end
parse
(
p
,
File
,
Data
,
varargin
{:});
data
=
p
.
Results
.
Data
;
file
=
p
.
Results
.
File
;
cut
=
p
.
Results
.
Cut
;
thr
=
p
.
Results
.
SNR
;
MaxTriggers
=
p
.
Results
.
Max
;
[
folder
,
file
]
=
fileparts
(
file
);
if
isempty
(
folder
);
folder
=
'.'
;
end
try
data
.
lonetrack
;
doLonetrack
=
1
;
catch
doLonetrack
=
0
;
end
if
~
isempty
(
folder
)
&&~
exist
(
folder
)
system
([
'mkdir -p '
folder
]);
end
if
MaxTriggers
==
-
1
MaxTriggers
=
Inf
;
end
%---------------------------------------------------------------------
%% INIT
%---------------------------------------------------------------------
%
% remove veto flaged trigger
%
waitbar
(
'loudest [init]'
);
try
if
length
(
cut
)
>
1
cut
=
strcat
(
cut
,
'+'
);
cut
=
strcat
(
cut
{:});
end
[
~
,
~
,
idx
]
=
decode
(
cut
,
data
);
data
=
data
(
idx
);
catch
end
% Order according to descending SNR
if
~
isprop
(
data
,
'lonetrack'
)
data
.
sort
(
'SNR.coherent'
,
'descend'
);
else
data
.
sort
(
'SNR'
,
'descend'
);
end
S
=
data
.
SNR
;
%---------------------------------------------------------------------
%% MAIN
%---------------------------------------------------------------------
%
% get interresting carateristic of the loudNb first trigger
%
loudNb
=
max
(
min
(
sum
(
S
>
thr
),
MaxTriggers
),
30
);
F
=
get_far
(
S
(
1
:
loudNb
),
far
);
if
doLonetrack
D
=
[
...
1
:
loudNb
;
...
% trigger idx
S
(
1
:
loudNb
)
'
;
...
% SNR
data
(
1
:
loudNb
)
.
GPSstart
(
'ifo1'
)
'
;
...
% GPS start ifo1
data
(
1
:
loudNb
)
.
GPSstart
(
'ifo2'
)
'
;
...
% GPS start ifo2
data
(
1
:
loudNb
)
.
duration
()
'
;
...
% duration
data
(
1
:
loudNb
)
.
lag
()
'
;
...
% lag number
data
(
1
:
loudNb
)
.
fmin
()
'
;
...
% fmin
data
(
1
:
loudNb
)
.
fmax
()
'
;
...
% fmax
data
(
1
:
loudNb
)
.
ra
()
'
;
...
% ra
data
(
1
:
loudNb
)
.
dec
()
'
;
...
% dec
1000
*
data
(
1
:
loudNb
)
.
tau
()
'
;
...
% tau
data
(
1
:
loudNb
)
.
SNRfrac
()
'
;
...
% SNRfrac coherent
data
(
1
:
loudNb
)
.
SNRfrac
()
'
;
...
% SNRfrac ifo1
data
(
1
:
loudNb
)
.
SNRfrac
()
'
;
...
% SNRfrac ifo2
data
(
1
:
loudNb
)
.
veto
.
ifo1
()
'
;
...
% DQflags ifo1
data
(
1
:
loudNb
)
.
veto
.
ifo2
()
'
;
...
% DQflags ifo2
];
else
D
=
[
...
1
:
loudNb
;
...
% trigger idx
F
'
;
...
% FAR
S
(
1
:
loudNb
)
'
;
...
% SNR
data
(
1
:
loudNb
)
.
GPSstart
'
;
...
% GPS start ifo1
data
(
1
:
loudNb
)
.
GPSstart
(
'ifo2'
)
'
;
...
% GPS start ifo2
data
(
1
:
loudNb
)
.
duration
'
;
...
% duration
data
(
1
:
loudNb
)
.
lag
'
;
...
% lag number
data
(
1
:
loudNb
)
.
fmin
'
;
...
% fmin
data
(
1
:
loudNb
)
.
fmax
'
;
...
% fmax
data
(
1
:
loudNb
)
.
ra
'
;
...
% ra
data
(
1
:
loudNb
)
.
dec
'
;
...
% dec
1000
*
data
(
1
:
loudNb
)
.
tau
'
;
...
% tau
data
(
1
:
loudNb
)
.
SNRfrac
'
;
...
% SNRfrac coherent
data
(
1
:
loudNb
)
.
SNRfrac
(
'ifo1'
)
'
;
...
% SNRfrac ifo1
data
(
1
:
loudNb
)
.
SNRfrac
(
'ifo2'
)
'
;
...
% SNRfrac ifo2
%data(1:loudNb).windows.start.ifo1'+data(1:loudNb).SNRfracTime';... % SNRfrac time ifo1
%data(1:loudNb).windows.start.ifo2'+data(1:loudNb).SNRfracTime';... % SNRfrac time ifo2
data
(
1
:
loudNb
)
.
veto
.
ifo1
'
;
...
% DQflags ifo1
data
(
1
:
loudNb
)
.
veto
.
ifo2
'
;
...
% DQflags ifo2
%data(1:loudNb).veto.Rveto';... % Rveto ifo2
];
end
% write the loudest triggers property in a text file
fid
=
fopen
([
folder
'/'
file
'.txt'
],
'w'
);
fprintf
(
fid
,[
'%d %7.2g %7.2f %12.2f %12.2f %7.2f %7.2f %7.2f %7.2f %7.2f %7.2f '
...
'%7.4f %3.3f %3.3f %3.3f %d %d\n'
],
D
);
fclose
(
fid
);
waitbar
(
'loudest [done]'
);
delete
(
waitbar
);
end
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment