you can also create a star mask, and then multiply the color mask by the star mask to get just the red star halos.
in pixelmath you'd say "$T*star_mask" and apply it to the color mask.
this would probably dim the color mask a little bit and give it the profile of the star mask. if you don't like that, you can say "iif(star_mask, $T, 0)" meaning if there is a non-zero pixel in star_mask then the corresponding location in the color mask should be preserved as-is, otherwise set to 0.
rob