Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
GstLAL
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue 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
lscsoft
GstLAL
Commits
8c77341a
Commit
8c77341a
authored
11 years ago
by
Chad Hanna
Browse files
Options
Downloads
Patches
Plain Diff
gstlal_itac.c: add debug category
parent
a3928bab
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
gstlal-inspiral/gst/lal/gstlal_itac.c
+8
-2
8 additions, 2 deletions
gstlal-inspiral/gst/lal/gstlal_itac.c
with
8 additions
and
2 deletions
gstlal-inspiral/gst/lal/gstlal_itac.c
+
8
−
2
View file @
8c77341a
...
...
@@ -54,6 +54,11 @@
#define DEFAULT_SNR_THRESH 5.5
#define GST_CAT_DEFAULT gstlal_itac_debug
GST_DEBUG_CATEGORY_STATIC
(
GST_CAT_DEFAULT
);
static
unsigned
autocorrelation_channels
(
const
GSTLALItac
*
element
)
{
return
gstlal_autocorrelation_chi2_autocorrelation_channels
(
element
->
autocorrelation_matrix
);
...
...
@@ -133,7 +138,7 @@ static GstFlowReturn process(GSTLALItac *element);
static
gboolean
sink_event
(
GstPad
*
pad
,
GstEvent
*
event
)
{
GSTLALItac
*
element
=
GSTLAL_ITAC
(
GST_PAD_PARENT
(
pad
));
gboolean
success
;
gboolean
success
=
FALSE
;
GstFlowReturn
result
;
switch
(
GST_EVENT_TYPE
(
event
))
{
...
...
@@ -265,7 +270,6 @@ static void set_property(GObject *object, enum property id, const GValue *value,
}
case
ARG_AUTOCORRELATION_MASK
:
{
unsigned
channels
;
g_mutex_lock
(
element
->
bank_lock
);
if
(
element
->
autocorrelation_mask
)
...
...
@@ -722,6 +726,8 @@ static void base_init(gpointer class)
"Chad Hanna <chad.hanna@ligo.org>"
);
GST_DEBUG_CATEGORY_INIT
(
GST_CAT_DEFAULT
,
"lal_itac"
,
0
,
"lal_itac debug category"
);
gst_element_class_add_pad_template
(
element_class
,
gst_pad_template_new
(
...
...
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