00001
00012 #ifndef AlignmentDetector_AlignmentDetector_h
00013 #define AlignmentDetector_AlignmentDetector_h
00014
00015 #include <vector>
00016
00017
00018 class AlignmentDetector {
00019
00020 public:
00021
00022
00023
00024 AlignmentDetector();
00025
00026
00027
00028
00029 ~AlignmentDetector();
00030
00031
00032
00033
00034 void setAlignmentDetector(long, int);
00035
00036
00037
00038
00039 long rawId() const;
00040
00041
00042
00043
00044 int index() const;
00045
00046 private:
00047
00048 long theRawId;
00049 int theIndex;
00050
00051 };
00052
00053 #endif