Skip to content
Snippets Groups Projects
Commit ef64b4de authored by anarya.ray's avatar anarya.ray Committed by Anarya Ray
Browse files

use correct rates for injection triggers

parent 91422a7d
No related branches found
No related tags found
1 merge request!388use correct rates for injection trigger pastros
Pipeline #494709 failed
......@@ -86,7 +86,8 @@ class PAstroUploader(events.EventProcessor):
input_topic=[f"gstlal.{options.tag}.{topic}" for topic in options.input_topic],
tag='-'.join([self.tag, self.model_name])
)
self.is_injection = (options.input_topic[0] == 'inj_uploads')
# set up gracedb client
if options.gracedb_service_url.startswith("file"):
self.client = inspiral.FakeGracedbClient(options.gracedb_service_url)
......@@ -166,7 +167,7 @@ class PAstroUploader(events.EventProcessor):
pa = None
data = self.parse_data_from_coinc(coinc)
if data:
pa = self.model(data)
pa = self.model(data,inj=self.is_injection)
return pa
def parse_data_from_coinc(self, coinc):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment