Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#ifndef Alignment_LaserAlignment_TsosVectorCollection_H
#define Alignment_LaserAlignment_TsosVectorCollection_H

/**
   \author Gero Flucke 
   \date May 2009
   last update on $Date: 2009/05/11 10:01:29 $ by $Author: flucke $
   
   A typedef for a collection of std::vectors of TrajectoryStateOnSurface .
   
*/

#include <vector>
// class TrajectoryStateOnSurface; // sufficient, but also confusing, so include:
#include "TrackingTools/TrajectoryState/interface/TrajectoryStateOnSurface.h"
typedef std::vector<std::vector<TrajectoryStateOnSurface> > TsosVectorCollection;

#endif