예제 #1
0
 def __init__(self, geom):
     super(track, self).__init__()
     self._productName = 'track'
     self._process = evd.DrawTrack(geom.getGeometryCore(),
                                   geom.getDetectorProperties(),
                                   geom.getDetectorClocks())
     self._n_planes = geom.nPlanes() * geom.nTPCs() * geom.nCryos()
     self.init()
예제 #2
0
 def __init__(self):
     super(track, self).__init__()
     self._productName = 'track'
     self._process = evd.DrawTrack()
     self.init()
예제 #3
0
 def __init__(self,detectorConfig):
     super(t0, self).__init__()
     self._productName = 't0'
     evd.DrawTrack()
     self._process = evd.DrawT0Tag(detectorConfig._geometryCore,detectorConfig._detectorProperties)
     self.init()
예제 #4
0
 def __init__(self):
     super(t0, self).__init__()
     self._productName = 't0'
     evd.DrawTrack()
     self._process = evd.DrawT0Tag()
     self.init()
예제 #5
0
 def __init__(self):
     super(cosmictag, self).__init__()
     self._productName = 'cosmictag'
     evd.DrawTrack()
     self._process = evd.DrawCosmicTag()
     self.init()
예제 #6
0
 def __init__(self,detectorConfig):
     super(cosmictag, self).__init__()
     self._productName = 'cosmictag'
     evd.DrawTrack()
     self._process = evd.DrawCosmicTag(detectorConfig._geometryCore,detectorConfig._detectorProperties)
     self.init()