00001 // -*- mode: c++;-*- 00002 // $Id: StjTrackCut.h,v 1.2 2010/04/13 13:30:51 pibero Exp $ 00003 // Copyright (C) 2008 Tai Sakuma <sakuma@bnl.gov> 00004 #ifndef STJTRACKCUT_H 00005 #define STJTRACKCUT_H 00006 00007 #include <TObject.h> 00008 00009 #include "StjTrackList.h" 00010 00011 class StjTrackCut : public TObject { 00012 00013 public: 00014 StjTrackCut() { } 00015 virtual ~StjTrackCut() { } 00016 00017 virtual bool operator()(const StjTrack& track) const = 0; 00018 00019 ClassDef(StjTrackCut, 1) 00020 00021 }; 00022 00023 #endif // STJTRACKCUT_H
1.5.9