IAP GITLAB

Skip to content
Snippets Groups Projects
Forked from Air Shower Physics / corsika
3566 commits behind the upstream repository.
StackView.h 292 B
#ifndef _include_corsika_stack_stackview_h_
#define _include_corsika_stack_stackview_h_

#include <vector>

namespace corsika::stack {

  template<typename Stack>
  class StackView : puclic Stack {

  public:


    

  private:
    std::vector<unsigned int> fIndices;
    
  };
  
}


#endif