// $Id: $ #ifndef INCLUDE_TRACKSTORE_H #define INCLUDE_TRACKSTORE_H 1 // Include files #include #include #include #include "math.h" #include "Track.h" #include "TF1.h" #include "TString.h" /** @class Millepede TrackStore.h include/TrackStore.h * * * @author A. Karavdina * @date 04/04/2012 */ class TrackStore{ public: TrackStore(); ~TrackStore(); void PrepareStore(Tracks& my_tracks,int n_event); bool ReadEvent(Tracks& my_event_tracks,int n_event); private: static const bool debug_mode = false; }; #endif // INCLUDE_TRACKSTORE_H