//----------------------------------------------------------- // File and Version Information: // $Id$ // // Description: // MPI module // ClusterFinderModule // // Environment: // Software developed for the PANDA Detector at FAIR. // // Author List: // Sebastian Neubert TUM (original author) // // //----------------------------------------------------------- // C/C++ Headers ---------------------- #include #include // Collaborating Class Headers -------- #include "PndTpcPadShapePool.h" #include "PndTpcPadPlane.h" #include "PndTpcClusterFinder.h" #include "TString.h" int main(int argc, char** argv){ // Setup MPI context MPI_Init(&argc, &argv); int rank=-1; MPI_Comm_rank(MPI_COMM_WORLD, &rank); std::cout<<"MPI_rank="<* _cluster_buffer=new std::vector; PndTpcClusterFinder* _finder= new PndTpcClusterFinder(_padPlane, _cluster_buffer, _timeslice, _mode,1); //_finder->checkConsistency(); };