]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - JETAN/AliJetKineReaderHeader.h
Rename method Dump to DumpPayLoad to avoid compilation warning since mother class...
[u/mrichter/AliRoot.git] / JETAN / AliJetKineReaderHeader.h
index 69caeaab852e443e4f2723e13024fe966c8d563e..ff4c13c142056ffaa10ae1b07666b705321b7d80 100644 (file)
@@ -18,17 +18,23 @@ class AliJetKineReaderHeader : public AliJetReaderHeader
   virtual ~AliJetKineReaderHeader();
   
   // Setters
-  void SetFastSimTPC(Bool_t flag = kTRUE) {fFastSimTPC = flag;}
-  virtual void SetPtCut(const Float_t par = 2.0) {fPtCut = par;}
+  void SetFastSimTPC(Bool_t flag = kTRUE) {fFastSimTPC = flag;} // if TPC fast simulation
+  void SetFastSimEMCAL(Bool_t flag = kTRUE) {fFastSimEMCAL = flag;} // if EMCAL fast simulation
+  void SetChargedOnly(Bool_t flag = kTRUE) {fChargedOnly = flag;} // for charged particles only, no smearing and no acceptance cuts
+
   // Getter
   Bool_t  FastSimTPC() const  {return fFastSimTPC;}
-  Float_t GetPtCut()   const  {return fPtCut;}
+  Bool_t  FastSimEMCAL() const  {return fFastSimEMCAL;}
+  Bool_t  ChargedOnly() const  {return fChargedOnly;}
+
          
  protected:
   //parameters set by user
   Bool_t fFastSimTPC;
-  Float_t fPtCut;
-  ClassDef(AliJetKineReaderHeader,1);
+  Bool_t fFastSimEMCAL;
+  Bool_t fChargedOnly;
+
+  ClassDef(AliJetKineReaderHeader,2);
 };
  
 #endif