From b2c872ec9ebe84f9fd49733109496f2fa52e9236 Mon Sep 17 00:00:00 2001
From: Cody Messick <cody.messick@ligo.org>
Date: Sat, 17 Aug 2019 16:35:54 -0500
Subject: [PATCH] itacac: Made spacing between functions and other
 functions/comments uniform

---
 gstlal-inspiral/gst/lal/gstlal_itacac.c | 18 ------------------
 1 file changed, 18 deletions(-)

diff --git a/gstlal-inspiral/gst/lal/gstlal_itacac.c b/gstlal-inspiral/gst/lal/gstlal_itacac.c
index 43b82c7fbd..4c9bb5b972 100644
--- a/gstlal-inspiral/gst/lal/gstlal_itacac.c
+++ b/gstlal-inspiral/gst/lal/gstlal_itacac.c
@@ -144,7 +144,6 @@ static int reset_time_and_offset(GSTLALItacac *itacac) {
         return 0;
 }
 
-
 static guint gst_audioadapter_available_samples(GstAudioAdapter *adapter) {
         guint size;
         g_object_get(adapter, "size", &size, NULL);
@@ -178,7 +177,6 @@ static void update_peak_info_from_autocorrelation_properties(GSTLALItacacPad *it
         }
 }
 
-
 /*
  * ============================================================================
  *
@@ -187,7 +185,6 @@ static void update_peak_info_from_autocorrelation_properties(GSTLALItacacPad *it
  * ============================================================================
  */
 
-
 static gboolean taglist_extract_string(GstObject *object, GstTagList *taglist, const char *tagname, gchar **dest)
 {
 	if(!gst_tag_list_get_string(taglist, tagname, dest)) {
@@ -276,8 +273,6 @@ static gboolean setcaps(GstAggregator *agg, GstAggregatorPad *aggpad, GstEvent *
 	itacacpad->data->duration_dataoffset_trigwindowoffset_peakfindinglength_matrix = gsl_matrix_calloc(max_number_disjoint_sets_in_trigger_window, 4);
 
 	return GST_AGGREGATOR_CLASS(gstlal_itacac_parent_class)->sink_event(agg, aggpad, event);
-
-
 }
 
 static gboolean sink_event(GstAggregator *agg, GstAggregatorPad *aggpad, GstEvent *event)
@@ -343,7 +338,6 @@ static gboolean sink_event(GstAggregator *agg, GstAggregatorPad *aggpad, GstEven
  * ============================================================================
  */
 
-
 enum padproperty {
 	ARG_N = 1,
 	ARG_SNR_THRESH,
@@ -456,7 +450,6 @@ static void gstlal_itacac_pad_set_property(GObject *object, enum padproperty id,
 		gst_object_unref(GST_OBJECT(itacac));
 }
 
-
 static void gstlal_itacac_pad_get_property(GObject *object, enum padproperty id, GValue *value, GParamSpec *pspec)
 {
 	GSTLALItacac *itacac = GSTLAL_ITACAC(gst_pad_get_parent(GST_PAD(object)));
@@ -537,7 +530,6 @@ static void update_state(GSTLALItacac *itacac, GstBuffer *srcbuf) {
 	itacac->next_output_timestamp += GST_BUFFER_DURATION(srcbuf);
 }
 
-
 static GstFlowReturn push_buffer(GstAggregator *agg, GstBuffer *srcbuf) {
 	GSTLALItacac *itacac = GSTLAL_ITACAC(agg);
 	update_state(itacac, srcbuf);
@@ -587,8 +579,6 @@ static void copy_nongapsamps(GSTLALItacac *itacac, GSTLALItacacPad *itacacpad, g
 		gst_audioadapter_copy_samples(itacacpad->adapter, (float complex *) itacacpad->data->data + offset_from_copied_data * itacacpad->maxdata->channels, copysamps, NULL, NULL);
         else if(itacac->peak_type == GSTLAL_PEAK_DOUBLE_COMPLEX)
 		gst_audioadapter_copy_samples(itacacpad->adapter, (double complex *) itacacpad->data->data + offset_from_copied_data * itacacpad->maxdata->channels, copysamps, NULL, NULL);
-
-
 }
 
 static void generate_triggers(GSTLALItacac *itacac, GSTLALItacacPad *itacacpad, void *data, guint peak_finding_start, guint peak_finding_length, guint samples_previously_searched, gboolean numerous_peaks_in_window) {
@@ -782,7 +772,6 @@ static void generate_triggers(GSTLALItacac *itacac, GSTLALItacacPad *itacacpad,
 		gstlal_peak_state_clear(itacacpad->tmp_maxdata);
 		itacacpad->tmp_maxdata->no_peaks_past_threshold = TRUE;
 	}
-
 }
 
 static void get_snr_series(GSTLALItacac *itacac, GSTLALItacacPad *itacacpad, guint channel, guint peak_sample) {
@@ -911,7 +900,6 @@ static GstBuffer* assemble_srcbuf(GSTLALItacac *itacac, GSTLALItacacPad *itacacp
 	return srcbuf;
 }
 
-
 static GstFlowReturn process(GSTLALItacac *itacac) {
 	// Iterate through audioadapters and generate triggers
 	GstElement *element = GST_ELEMENT(itacac);
@@ -1279,7 +1267,6 @@ static GstFlowReturn aggregate(GstAggregator *aggregator, gboolean timeout)
 	return result;
 }
 
-
 /*
  * ============================================================================
  *
@@ -1363,7 +1350,6 @@ static void gstlal_itacac_finalize(GObject *object)
  * http://developer.gnome.org/doc/API/2.0/gobject/gobject-Type-Information.html#GClassInitFunc
  */
 
-
 static void gstlal_itacac_pad_class_init(GSTLALItacacPadClass *klass)
 {
 	GObjectClass *gobject_class = G_OBJECT_CLASS(klass);
@@ -1523,10 +1509,8 @@ static void gstlal_itacac_class_init(GSTLALItacacClass *klass)
 		&src_templ,
 		GST_TYPE_AGGREGATOR_PAD
 	);
-
 }
 
-
 /*
  * Instance init function.  See
  *
@@ -1561,7 +1545,6 @@ static void gstlal_itacac_pad_init(GSTLALItacacPad *itacacpad)
 
 
 	gst_pad_use_fixed_caps(GST_PAD(itacacpad));
-
 }
 
 static void gstlal_itacac_init(GSTLALItacac *itacac)
@@ -1580,5 +1563,4 @@ static void gstlal_itacac_init(GSTLALItacac *itacac)
 	itacac->L1_itacacpad = NULL;
 	itacac->V1_itacacpad = NULL;
 	g_mutex_init(&itacac->caps_lock);
-
 }
-- 
GitLab