FlowCalculator.cxx 335 B

1234567891011121314151617181920212223
  1. //
  2. // Created by peter on 8/27/19.
  3. //
  4. #include "FlowCalculator.h"
  5. ClassImp(FlowCalculator);
  6. FlowCalculator::FlowCalculator() {
  7. centCalc = new CentralityCalculator();
  8. }
  9. FlowCalculator::~FlowCalculator() {
  10. delete centCalc;
  11. }
  12. void FlowCalculator::LoopRes(TString outName) {
  13. }
  14. void FlowCalculator::LoopFlow(TString outName) {
  15. }