Main Page   Namespace List   Class Hierarchy   Compound List   File List   Namespace Members   Compound Members   File Members  

IMatrixManager.h

Go to the documentation of this file.
00001 #ifndef ATLFAST_IMATRIXMANAGER_H
00002 #define ATLFAST_IMATRIXMANAGER_H
00003 
00004 #include "AtlfastCode/TrackTrajectory.h"
00005 #include "CLHEP/Random/JamesRandom.h"
00006 #include "CLHEP/Matrix/Matrix.h"
00007 #include "AtlfastCode/BinID.h"
00008 #include <vector>
00009 
00010 //===========================================================
00011 //
00012 //  IMatrix Manager
00013 // 
00014 //  Interface for Matrix Managers
00015 //  Used by tracksmearer to provide smear matrix data 
00016 //  corresponding to a given track trajectory
00017 //
00018 //===========================================================
00019 
00020 
00021 
00022 namespace Atlfast {
00023 
00024   class IMatrixManager 
00025 {
00026  public:
00027   //  virtual HepMatrix getMatrix(const TrackTrajectory& track) const = 0;
00028   virtual vector<double> getVariables(const TrackTrajectory& track,
00029                                       HepMatrix& usedSigma) const = 0;
00030  private:
00031   virtual void initialise() = 0;
00032   virtual BinID getBinID(const TrackTrajectory& track) const = 0;
00033 };
00034 
00035 }
00036 
00037 #endif
00038 
00039 
00040 
00041 
00042 

Generated on Thu Feb 21 14:30:46 2002 for Atlfast by doxygen1.2.13.1 written by Dimitri van Heesch, © 1997-2001