StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
StL3Nuclei.h
1 #ifndef STL3NUCLEI_HH
2 #define STL3NUCLEI_HH
3 
4 #include "StL3RareTrackCut.h"
5 #include <Stiostream.h>
6 
7 class StGlobalTrack;
8 
9 class StL3Nuclei : public StL3RareTrackCut {
10 
11  public:
12  StL3Nuclei(float pminin = 0.2, float pmaxin=10.0,int charge = 0, int mass = 2);
13  ~StL3Nuclei(){};
14  int Accept(StGlobalTrack* track);
15  void Report();
16 
17  private:
18  float pcut[2];
19  int chargeToAccept; //<0 = negatives, 0 = all, >0 = positives
20  int minMass;
21 
22  ClassDef(StL3Nuclei,1)
23 
24 };
25 
26 #endif