Hi,
after HT with PixelMath:
iif($T==0,1,$T) sets the clipped shadow Pixels to 1 and lets the rest unchanged, this makes them somehow better visible.
iif($T==0,1,0) sets the clipped shadow Pixels to 1 and all others to Zero, so you can much better recognize them.
If you want to see it before and you move the shadow slider in HT to the right you see the number of pixels clipped AND
you see the value where your slider stands for clipping, for example at 0.0025745 (without executing it!)
then your PixelMath could be:
iif($T<0.0025745,1,0) sets the clipped shadow Pixels which are darker as 0.0025745 to 1 and the rest to Zero, so you can much better recognize them.
Statistics also shows the darkest Pixel and the x,y coordinate of it, but only of this one Pixel...
Hope this helps
Gerald