| 79 |  | virtual void preProcess() {} | 
| 80 |  | virtual void postProcess() {} | 
| 81 |  |  | 
| 82 | + | int getNPairs() { return nPairs_;} | 
| 83 | + |  | 
| 84 |  | SimInfo* info_; | 
| 85 |  | Snapshot* currentSnapshot_; | 
| 86 |  |  | 
| 90 |  | std::string selectionScript1_; | 
| 91 |  | std::string selectionScript2_; | 
| 92 |  | int nProcessed_; | 
| 93 | + |  | 
| 94 |  | private: | 
| 95 |  |  | 
| 96 |  | virtual void initalizeHistogram() {} | 
| 97 |  | virtual void collectHistogram(StuntDouble* sd1, StuntDouble* sd2) =0; | 
| 98 |  | virtual void processHistogram() = 0; | 
| 99 | + | void processNonOverlapping(SelectionManager& sman1, SelectionManager& sman2); | 
| 100 | + | void processOverlapping(SelectionManager& sman); | 
| 101 |  |  | 
| 102 |  | virtual void writeRdf() = 0; | 
| 103 |  |  | 
| 106 |  | SelectionEvaluator evaluator2_; | 
| 107 |  | SelectionManager seleMan1_; | 
| 108 |  | SelectionManager seleMan2_; | 
| 109 | < |  | 
| 109 | > | SelectionManager sele1_minus_common_; | 
| 110 | > | SelectionManager sele2_minus_common_; | 
| 111 | > | SelectionManager common_; | 
| 112 | > | int nPairs_; | 
| 113 |  | }; | 
| 114 |  |  | 
| 115 |  |  |