]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
New interface of a VStore to hold trigger tracks (Laurent)
authorhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sun, 17 Jun 2007 20:37:44 +0000 (20:37 +0000)
committerhristov <hristov@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sun, 17 Jun 2007 20:37:44 +0000 (20:37 +0000)
MUON/AliMUONVTriggerTrackStore.cxx [new file with mode: 0644]
MUON/AliMUONVTriggerTrackStore.h [new file with mode: 0644]

diff --git a/MUON/AliMUONVTriggerTrackStore.cxx b/MUON/AliMUONVTriggerTrackStore.cxx
new file mode 100644 (file)
index 0000000..5e9393f
--- /dev/null
@@ -0,0 +1,72 @@
+/**************************************************************************
+* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+*                                                                        *
+* Author: The ALICE Off-line Project.                                    *
+* Contributors are mentioned in the code where appropriate.              *
+*                                                                        *
+* Permission to use, copy, modify and distribute this software and its   *
+* documentation strictly for non-commercial purposes is hereby granted   *
+* without fee, provided that the above copyright notice appears in all   *
+* copies and that both the copyright notice and this permission notice   *
+* appear in the supporting documentation. The authors make no claims     *
+* about the suitability of this software for any purpose. It is          *
+* provided "as is" without express or implied warranty.                  *
+**************************************************************************/
+
+// $Id$
+
+/// \class AliMUONVTriggerTrackStore
+///
+/// Base class of a trigger track store
+///
+/// \author Laurent Aphecetche, Subatech
+
+#include "AliMUONVTriggerTrackStore.h"
+#include "AliMUONTriggerTrack.h"
+#include "AliLog.h"
+
+/// \cond CLASSIMP
+ClassImp(AliMUONVTriggerTrackStore)
+/// \endcond
+
+//_____________________________________________________________________________
+AliMUONVTriggerTrackStore::AliMUONVTriggerTrackStore()
+{
+  /// ctor
+}
+
+//_____________________________________________________________________________
+AliMUONVTriggerTrackStore::~AliMUONVTriggerTrackStore()
+{
+  /// dtor
+}
+
+//_____________________________________________________________________________
+Bool_t
+AliMUONVTriggerTrackStore::Add(TObject* object)
+{
+  /// Add an object, if it is of type AliMUONTriggerTrack
+  if (object)
+  {
+    AliMUONTriggerTrack* tt = dynamic_cast<AliMUONTriggerTrack*>(object);
+    if (tt)
+    {
+      Add(*tt);
+      return kTRUE;
+    }
+    else
+    {
+      AliError(Form("object is not of expected AliMUONTriggerTrack type but %s",
+                    object->ClassName()));
+    }
+  }
+  return kFALSE;
+}
+
+//_____________________________________________________________________________
+AliMUONVTriggerTrackStore*
+AliMUONVTriggerTrackStore::Create(TTree& tree)
+{
+  /// Create a VTriggerTrackStore from the tree (if possible)
+  return static_cast<AliMUONVTriggerTrackStore*>(AliMUONVStore::Create(tree,"MUONTriggerTrack"));
+}
diff --git a/MUON/AliMUONVTriggerTrackStore.h b/MUON/AliMUONVTriggerTrackStore.h
new file mode 100644 (file)
index 0000000..4cd2de9
--- /dev/null
@@ -0,0 +1,46 @@
+#ifndef ALIMUONVTRIGGERTRACKSTORE_H
+#define ALIMUONVTRIGGERTRACKSTORE_H
+
+/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
+* See cxx source for full Copyright notice                               */
+
+// $Id$
+
+/// \ingroup rec
+/// \class AliMUONVTriggerTrackStore
+/// \brief Base class of a trigger track store
+/// 
+// Author Laurent Aphecetche, Subatech
+
+#ifndef ALIMUONVSTORE_H
+#  include "AliMUONVStore.h"
+#endif
+
+class AliMUONTriggerTrack;
+
+class AliMUONVTriggerTrackStore : public AliMUONVStore
+{
+public:
+  AliMUONVTriggerTrackStore();
+  virtual ~AliMUONVTriggerTrackStore();
+
+  /// Add 
+  virtual Bool_t Add(TObject* object);
+  
+  /// Add a trigger track
+  virtual void Add(const AliMUONTriggerTrack& track) = 0;
+  
+  using AliMUONVStore::Create;
+  
+  /// Create a store from the tree (if possible).
+  static AliMUONVTriggerTrackStore* Create(TTree& tree);
+
+  /// Iterator to loop over tracks
+  virtual TIterator* CreateIterator() const = 0;
+
+  using AliMUONVStore::GetSize;
+  
+  ClassDef(AliMUONVTriggerTrackStore,1) // Base class of a trigger track container
+};
+
+#endif