Uses of Class
org.processmining.framework.models.petrinet.algorithms.logReplay.Measurer

Packages that use Measurer
org.processmining.analysis.conformance Contains classes related to the Conformance Analysis Plugin. 
org.processmining.analysis.performance   
org.processmining.framework.models.petrinet.algorithms.logReplay   
 

Uses of Measurer in org.processmining.analysis.conformance
 

Subclasses of Measurer in org.processmining.analysis.conformance
 class ConformanceMeasurer
          Actually takes those measurements that are needed to calculate the selected conformance metrics.
 

Methods in org.processmining.analysis.conformance with parameters of type Measurer
protected  void DiagnosticTransition.takePreFiringMeasurement(ReplayedLogTrace diagnosticTrace, Measurer measurer)
          Will be called directly before this transition is fired. Counts the consumed and produced tokens and remembers the passed edges.
 

Uses of Measurer in org.processmining.analysis.performance
 

Subclasses of Measurer in org.processmining.analysis.performance
 class PerformanceMeasurer
          Actually takes those measurements that are needed to calculate some performance metrics.
 

Uses of Measurer in org.processmining.framework.models.petrinet.algorithms.logReplay
 

Fields in org.processmining.framework.models.petrinet.algorithms.logReplay declared as Measurer
protected  Measurer LogReplayAnalysisMethod.myMeasurer
           
 

Methods in org.processmining.framework.models.petrinet.algorithms.logReplay with parameters of type Measurer
 void ReplayedTransition.fireQuick(ReplayedLogTrace replayedTrace, java.util.Date timeStamp, Measurer measurer)
          Fires the transition like normally but in addition adds diagnostic information for the respective process instance.
 void ReplayedTransition.fireSequenceOfTasks(java.util.ArrayList firingSequence, ReplayedPetriNet replayedNet, ReplayedLogTrace replayedTrace, java.util.Date timeStamp, Measurer measurer)
          Actually fire a given sequence of transitions in the given Petri net.
 boolean ReplayedTransition.isEnabled(ReplayedLogTrace replayedTrace, java.util.Date timeStamp, int maxDepth, Measurer measurer)
          Check whether this transition could be enabled through invisible tasks and do it if possible; i.e., the current marking of the net is changed (used to replay nets with invisible tasks correctly).
protected  void ReplayedTransition.takePreFiringMeasurement(ReplayedLogTrace replayedTrace, Measurer measurer)
          Will be called directly before this transition is fired.
 

Constructors in org.processmining.framework.models.petrinet.algorithms.logReplay with parameters of type Measurer
LogReplayAnalysisMethod(PetriNet inputPetriNet, LogReader inputLog, Measurer measurer)
          Creates the log replay analysis method object.