##// END OF EJS Templates
cambio a timeZone
joabAM -
r1402:2b5adcd8c887
parent child
Show More
@@ -389,7 +389,7 class HDFWriter(Operation):
389 metadataList = None
389 metadataList = None
390 currentDay = None
390 currentDay = None
391 lastTime = None
391 lastTime = None
392 typeTime = "ut"
392 timeZone = "ut"
393 hourLimit = 3
393 hourLimit = 3
394 breakDays = True
394 breakDays = True
395
395
@@ -399,14 +399,14 class HDFWriter(Operation):
399 return
399 return
400
400
401 def setup(self, path=None, blocksPerFile=10, metadataList=None, dataList=None, setType=None,
401 def setup(self, path=None, blocksPerFile=10, metadataList=None, dataList=None, setType=None,
402 description=None,typeTime = "ut",hourLimit = 3, breakDays=True):
402 description=None,timeZone = "ut",hourLimit = 3, breakDays=True):
403 self.path = path
403 self.path = path
404 self.blocksPerFile = blocksPerFile
404 self.blocksPerFile = blocksPerFile
405 self.metadataList = metadataList
405 self.metadataList = metadataList
406 self.dataList = [s.strip() for s in dataList]
406 self.dataList = [s.strip() for s in dataList]
407 self.setType = setType
407 self.setType = setType
408 self.description = description
408 self.description = description
409 self.timeZone = typeTime
409 self.timeZone = timeZone
410 self.hourLimit = hourLimit
410 self.hourLimit = hourLimit
411 self.breakDays = breakDays
411 self.breakDays = breakDays
412
412
General Comments 0
You need to be logged in to leave comments. Login now