/**
 $Id: FitTrackSRListModule.h,v 1.8 2004/08/19 19:11:48 musser Exp $

 A JobControl Module for filling raw CandFitTrackSRList from CandTrackList

 R. Lee 2001.03.30

 Note, if the following configuration values are set by the user they
 MUST be set with have units (see Conventions/Munits.h):

 Time:

        HitDTime0
        HitDTime1

 When the config parameter "IsCosmic" is set this parameter:

        FitInputHits

 is also set if IsCosmic is different than previously set.

*/


#ifndef FITTRACKSRLISTMODULE_H
#define FITTRACKSRLISTMODULE_H

#include "TObject.h"
#include "TString.h"

#include "JobControl/JobCModule.h"

class JobCommand;
class MomNavigator;

class FitTrackSRListModule : public JobCModule, public TObject
{
public:
  FitTrackSRListModule();
 ~FitTrackSRListModule();
  
  void BeginJob();
  JobCResult Reco(MomNavigator *mom);
  const Registry &DefaultConfig() const;

  ClassDef(FitTrackSRListModule,1)              // FitTrackSRListModule version 0
};

#endif // FITTRACKSRLISTMODULE_H
