]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - JETAN/AliJetKineReaderHeader.h
Fixing in/out tags in documentation
[u/mrichter/AliRoot.git] / JETAN / AliJetKineReaderHeader.h
index e190359f14071f0640a6030c7266bc0e8fb9992e..8f60288485598654d091698c8e2ceb30d134f273 100644 (file)
@@ -20,18 +20,21 @@ class AliJetKineReaderHeader : public AliJetReaderHeader
   // Setters
   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;}
   Bool_t  FastSimEMCAL() const  {return fFastSimEMCAL;}
+  Bool_t  ChargedOnly() const  {return fChargedOnly;}
 
          
  protected:
   //parameters set by user
-  Bool_t fFastSimTPC;
-  Bool_t fFastSimEMCAL;
+  Bool_t fFastSimTPC;   // TPC fast simulation flag
+  Bool_t fFastSimEMCAL; // EMCAL fast simulation flag
+  Bool_t fChargedOnly;  // Charged particle only flag
 
-  ClassDef(AliJetKineReaderHeader,1);
+  ClassDef(AliJetKineReaderHeader,2);
 };
  
 #endif