]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
missing breaks inserted
authormorsch <morsch@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 24 Oct 2011 10:18:31 +0000 (10:18 +0000)
committermorsch <morsch@f7af4fe6-9843-0410-8265-dc069ae4e863>
Mon, 24 Oct 2011 10:18:31 +0000 (10:18 +0000)
bug #88061, Missing "break"

ANALYSIS/AliESDv0KineCuts.cxx

index 9eb925540bd5d5aac26e56f76ba9ec1b1f8d1fdc..80df0676b7ed5219bfbeba4d10736b7c7459de85 100644 (file)
@@ -992,8 +992,10 @@ void AliESDv0KineCuts::SetMode(Int_t mode, Int_t type){
   switch(mode){\r
   case kPurity:\r
     fMode = kPurity;  // used to obtain highest purity possible - the efficiency may be low\r
+    break;\r
   case kEffGamma:\r
     fMode = kEffGamma; // used to obtain highes efficiency possible - the purity may be worse\r
+    break;\r
   default:\r
     AliError("V0 selection mode not recognozed, setting 'kPurity'");\r
     fMode = kPurity;\r
@@ -1002,8 +1004,10 @@ void AliESDv0KineCuts::SetMode(Int_t mode, Int_t type){
   switch(type){\r
   case kPP:\r
     fType = kPP;  // cuts optimized for low multiplicity \r
+    break;\r
   case kPbPb:\r
     fType = kPbPb;  // cuts optimized for high multiplicity\r
+    break;\r
   }\r
   \r
   // setup the cut values for selected mode & type\r