Esempio n. 1
0
    def parse_from_eprot(self, file, pattern=re.compile(".*")):
        """
        Parse an E protocol and collect the times to extend the
        sample.
        """

        p = pylib_eprots.eprotocol(file, True)
        f = p.filter(pattern)
        self.data.extend(f.collect_times())
        self.statistics = False
Esempio n. 2
0
    def parse_from_eprot(self, file, pattern=re.compile(".*")):
        """
        Parse an E protocol and collect the times to extend the
        sample.
        """

        p = pylib_eprots.eprotocol(file, True);
        f = p.filter(pattern);              
        self.data.extend(f.collect_times())
        self.statistics = False
Esempio n. 3
0
 def parse(self, file, pattern=re.compile(".*")):
           p = pylib_eprots.eprotocol(file, True);
           f = p.filter(pattern);
           tmp = f.collect_medians()
           self.add_problem_data(tmp);
Esempio n. 4
0
 def parse(self, file, pattern=re.compile(".*")):
     p = pylib_eprots.eprotocol(file, True)
     f = p.filter(pattern)
     tmp = f.collect_medians()
     self.add_problem_data(tmp)