View Javadoc

1   /*
2    * To change this template, choose Tools | Templates
3    * and open the template in the editor.
4    */
5   
6   package org.lcsim.recon.tracking.seedtracker;
7   
8   import java.util.HashMap;
9   import java.util.Map;
10  
11  /**
12   * A not very smart data object... 
13   * @author cozzy
14   */
15  public class StrategyXMLMetadata {
16  
17      public String comment = null; 
18      public String targetDetector = null; 
19      public Map<SeedStrategy, String> strategyComments = new HashMap<SeedStrategy, String>(); 
20  }