]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONVTrackerDataMaker.h
Updated documentation about alignment to remove obsolete classes
[u/mrichter/AliRoot.git] / MUON / AliMUONVTrackerDataMaker.h
index fec8172a9b8943b5e03ffde910ce84e82168456e..69bc5ae29e2c5aaefb4020849dc1de8735b7bcd2 100644 (file)
@@ -6,7 +6,7 @@
 
 // $Id$
 
-/// \ingroup graphics
+/// \ingroup rec
 /// \class AliMUONVTrackerDataMaker
 /// \brief Producer of some AliMUONVTrackerData
 /// 
@@ -17,6 +17,7 @@
 #endif
 
 class AliMUONVTrackerData;
+class TCollection;
 
 class AliMUONVTrackerDataMaker : public TObject
 {
@@ -24,26 +25,53 @@ public:
   AliMUONVTrackerDataMaker();
   virtual ~AliMUONVTrackerDataMaker();
   
+  /// Whether we are valid or not
   virtual Bool_t IsValid() const = 0;
   
+  /// Our data
   virtual AliMUONVTrackerData* Data() const = 0;
 
+  /// Whether or not we're the owner of our AliMUONVTrackerData
+  virtual void SetOwnerOfData(Bool_t /*flag*/) { }
+  
+  /// Whether we can be run
   virtual Bool_t IsRunnable() const = 0;
 
+  /// Whether we are running (must be false if IsRunnable is false)
   virtual Bool_t IsRunning() const = 0;
   
+  /// Whether we're only handling event-by-event data (i.e. no accumulation)
+  virtual Bool_t IsEventByEvent() const { return kFALSE; }
+  
+  /// Set event-by-event mode
+  virtual void SetEventByEvent(Bool_t /*flag*/) { }
+  
+  /// Set the running state (no effect if not runnable)
   virtual void SetRunning(Bool_t flag) = 0;
   
-  virtual Bool_t NextEvent() = 0;
+       /// Process current event
+       virtual Bool_t ProcessEvent() = 0;
+       
+  /// Advance to next event and process it (no effect if not runnable)
+  virtual Bool_t NextEvent() { return ProcessEvent(); }
   
+  /// Rewind events (no effect if not runnable)
   virtual void Rewind() = 0;
   
-  /// Whether we're owner of our data
-  virtual void SetOwner(Bool_t flag) = 0; 
-  
+  /// Set our source URI
   virtual void SetSource(const char* source) = 0;
   
+  /// Get our source URI
   virtual TString Source() const = 0;
+
+  /// Get the number of events we have seen (but not necessarily used...)
+  virtual Int_t NumberOfEvents() const = 0;
+  
+  /// Merge
+  virtual Long64_t Merge(TCollection* list) = 0;
+  
+  /// Set event range (if not event by event)
+  virtual void SetEventRange(Int_t /* firstevent */, Int_t /* lastevent */) {}
   
   ClassDef(AliMUONVTrackerDataMaker,1) // Producer of AliMUONVTrackerData
 };