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

ElectronMatrixManager.h

Go to the documentation of this file.
00001 #ifndef ATLFAST_ELECTRONMATRIXMANAGER_H
00002 #define ATLFAST_ELECTRONMATRIXMANAGER_H
00003 
00004 #include "AtlfastCode/IMatrixManager.h"
00005 #include "AtlfastCode/BinID.h"
00006 
00007 #include <vector>
00008 #include <string>
00009 #include <map>
00010 #include <utility>
00011 
00012 //===========================================================
00013 //
00014 //  Matrix Manager
00015 // 
00016 //  Used by tracksmearer to provide smear matrix data 
00017 //  corresponding to a given track trajectory
00018 //
00019 //===========================================================
00020 
00021 
00022 class MsgStream;
00023 
00024 namespace Atlfast {
00025   class TrackTrajectory;
00026   class MuonMatrixManager;
00027   class XKalman;
00028 
00034   class ElectronMatrixManager: public IMatrixManager
00035 {
00036 
00037  public:
00038 
00039   ElectronMatrixManager(int randSeed, MsgStream& log);
00040   virtual ~ElectronMatrixManager();
00041   vector<double> getVariables(const TrackTrajectory&, 
00042                               HepMatrix& usedMatrix) const;
00043  private:
00044   void initialise();
00045   XKalman* m_XKalman;
00046   MuonMatrixManager* m_manager;
00047   BinID getBinID(const TrackTrajectory&) const{return BinID();}
00048 };
00049 
00050 }
00051 
00052 #endif
00053 
00054 
00055 
00056 

Generated on Mon Feb 4 15:54:23 2002 for Atlfast by doxygen1.2.13.1 written by Dimitri van Heesch, © 1997-2001